Skip to content

Commit 44752e0

Browse files
committed
chore: bump rust crates
1 parent a168063 commit 44752e0

File tree

9 files changed

+530
-594
lines changed

9 files changed

+530
-594
lines changed

Cargo.lock

Lines changed: 515 additions & 576 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/delta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-delta"
3-
version = "1.2.7"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Loro internal library. It's used as a delta between two versions of text or lists. It's also an efficient Rope."

crates/examples/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,3 @@ harness = false
3636
[[bench]]
3737
name = "fork"
3838
harness = false
39-
40-
[profile.bench]
41-
debug = true

crates/kv-store/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-kv-store"
3-
version = "1.2.7"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Key-value store component for Loro, a high-performance CRDTs framework"
@@ -10,7 +10,7 @@ authors = ["Liang Zhao", "Zixuan Chen"]
1010

1111

1212
[dependencies]
13-
loro-common = { path = "../loro-common", version = "1.2.7" }
13+
loro-common = { path = "../loro-common", version = "1.3.1" }
1414
bytes = { workspace = true }
1515
fxhash = { workspace = true }
1616
once_cell = { workspace = true }

crates/loro-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-common"
3-
version = "1.2.7"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Common types and functions for Loro. This is an internal lib of Loro."

crates/loro-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-ffi"
3-
version = "1.1.3"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
publish = false

crates/loro-internal/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-internal"
3-
version = "1.2.7"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Loro internal library. Do not use it directly as it's not stable."
@@ -16,13 +16,13 @@ keywords = ["crdt", "local-first"]
1616
[dependencies]
1717
generic-btree = { version = "^0.10.5" }
1818
smallvec = { workspace = true }
19-
loro-delta = { path = "../delta", version = "1.2.7", package = "loro-delta" }
19+
loro-delta = { path = "../delta", version = "1.3.1", package = "loro-delta" }
2020
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
21-
loro-common = { path = "../loro-common", version = "1.2.7" }
21+
loro-common = { path = "../loro-common", version = "1.3.1" }
2222
fractional_index = { path = "../fractional_index", features = [
2323
"serde",
2424
], version = "1.2.7", package = "loro_fractional_index" }
25-
loro-kv-store = { path = "../kv-store", version = "1.2.7" }
25+
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
2626
fxhash = { workspace = true }
2727
serde = { workspace = true }
2828
thiserror = { workspace = true }

crates/loro-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-wasm"
3-
version = "0.1.0"
3+
version = "1.3.1"
44
edition = "2021"
55
publish = false
66
repository = "https://github.com/loro-dev/loro/"

crates/loro/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro"
3-
version = "1.2.7"
3+
version = "1.3.1"
44
edition = "2021"
55
license = "MIT"
66
documentation = "https://docs.rs/loro/"
@@ -14,10 +14,10 @@ keywords = ["crdt", "local-first"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
loro-internal = { path = "../loro-internal", version = "1.2.7" }
18-
loro-common = { path = "../loro-common", version = "1.2.7", features = ["serde_json"] }
19-
loro-kv-store = { path = "../kv-store", version = "1.2.7" }
20-
delta = { path = "../delta", package = "loro-delta", version = "1.2.7" }
17+
loro-internal = { path = "../loro-internal", version = "1.3.1" }
18+
loro-common = { path = "../loro-common", version = "1.3.1", features = ["serde_json"] }
19+
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
20+
delta = { path = "../delta", package = "loro-delta", version = "1.3.1" }
2121
generic-btree = { version = "^0.10.5" }
2222
enum-as-inner = { workspace = true }
2323
tracing = { workspace = true }

0 commit comments

Comments
 (0)