Skip to content

Commit

Permalink
chore: bump rust crates
Browse files Browse the repository at this point in the history
  • Loading branch information
zxch3n committed Jan 22, 2025
1 parent a168063 commit 44752e0
Show file tree
Hide file tree
Showing 9 changed files with 530 additions and 594 deletions.
1,091 changes: 515 additions & 576 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/delta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-delta"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
description = "Loro internal library. It's used as a delta between two versions of text or lists. It's also an efficient Rope."
Expand Down
3 changes: 0 additions & 3 deletions crates/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,3 @@ harness = false
[[bench]]
name = "fork"
harness = false

[profile.bench]
debug = true
4 changes: 2 additions & 2 deletions crates/kv-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-kv-store"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
description = "Key-value store component for Loro, a high-performance CRDTs framework"
Expand All @@ -10,7 +10,7 @@ authors = ["Liang Zhao", "Zixuan Chen"]


[dependencies]
loro-common = { path = "../loro-common", version = "1.2.7" }
loro-common = { path = "../loro-common", version = "1.3.1" }
bytes = { workspace = true }
fxhash = { workspace = true }
once_cell = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-common"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
description = "Common types and functions for Loro. This is an internal lib of Loro."
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-ffi"
version = "1.1.3"
version = "1.3.1"
edition = "2021"
license = "MIT"
publish = false
Expand Down
8 changes: 4 additions & 4 deletions crates/loro-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-internal"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
description = "Loro internal library. Do not use it directly as it's not stable."
Expand All @@ -16,13 +16,13 @@ keywords = ["crdt", "local-first"]
[dependencies]
generic-btree = { version = "^0.10.5" }
smallvec = { workspace = true }
loro-delta = { path = "../delta", version = "1.2.7", package = "loro-delta" }
loro-delta = { path = "../delta", version = "1.3.1", package = "loro-delta" }
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "1.2.7" }
loro-common = { path = "../loro-common", version = "1.3.1" }
fractional_index = { path = "../fractional_index", features = [
"serde",
], version = "1.2.7", package = "loro_fractional_index" }
loro-kv-store = { path = "../kv-store", version = "1.2.7" }
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
fxhash = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-wasm"
version = "0.1.0"
version = "1.3.1"
edition = "2021"
publish = false
repository = "https://github.com/loro-dev/loro/"
Expand Down
10 changes: 5 additions & 5 deletions crates/loro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/loro/"
Expand All @@ -14,10 +14,10 @@ keywords = ["crdt", "local-first"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
loro-internal = { path = "../loro-internal", version = "1.2.7" }
loro-common = { path = "../loro-common", version = "1.2.7", features = ["serde_json"] }
loro-kv-store = { path = "../kv-store", version = "1.2.7" }
delta = { path = "../delta", package = "loro-delta", version = "1.2.7" }
loro-internal = { path = "../loro-internal", version = "1.3.1" }
loro-common = { path = "../loro-common", version = "1.3.1", features = ["serde_json"] }
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
delta = { path = "../delta", package = "loro-delta", version = "1.3.1" }
generic-btree = { version = "^0.10.5" }
enum-as-inner = { workspace = true }
tracing = { workspace = true }
Expand Down

0 comments on commit 44752e0

Please sign in to comment.