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 3, 2025
1 parent 137d8b2 commit c7c1e2f
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 44 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.1.0"
version = "1.2.7"
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
2 changes: 1 addition & 1 deletion crates/fractional_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro_fractional_index"
version = "1.1.0"
version = "1.2.7"
edition = "2021"
license = "MIT"
description = "Fraction index for Loro. Fork and modified from jamsocket/fractional_index"
Expand Down
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.1.0"
version = "1.2.7"
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.1.0" }
loro-common = { path = "../loro-common", version = "1.2.7" }
bytes = { workspace = true }
fxhash = { workspace = true }
once_cell = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions 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.1.0"
version = "1.2.7"
edition = "2021"
license = "MIT"
description = "Common types and functions for Loro. This is an internal lib of Loro."
Expand All @@ -14,7 +14,7 @@ keywords = ["crdt", "local-first"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rle = { path = "../rle", version = "1.1.0", package = "loro-rle" }
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
serde = { workspace = true }
serde_json = { workspace = true, optional=true }
thiserror = "1.0.43"
Expand Down
12 changes: 6 additions & 6 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.1.0"
version = "1.2.7"
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.1.0", package = "loro-delta" }
rle = { path = "../rle", version = "1.1.0", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "1.1.0" }
loro-delta = { path = "../delta", version = "1.2.7", package = "loro-delta" }
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "1.2.7" }
fractional_index = { path = "../fractional_index", features = [
"serde",
], version = "1.1.0", package = "loro_fractional_index" }
loro-kv-store = { path = "../kv-store", version = "1.1.0" }
], version = "1.2.7", package = "loro_fractional_index" }
loro-kv-store = { path = "../kv-store", version = "1.2.7" }
fxhash = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-internal/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-internal-fuzz"
version = "1.1.0"
version = "1.2.7"
authors = ["Automatically generated"]
publish = false
edition = "2018"
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.1.0"
version = "1.2.7"
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.1.0" }
loro-common = { path = "../loro-common", version = "1.1.0", features = ["serde_json"] }
loro-kv-store = { path = "../kv-store", version = "1.1.0" }
delta = { path = "../delta", package = "loro-delta", version = "1.1.0" }
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" }
generic-btree = { version = "^0.10.5" }
enum-as-inner = { workspace = true }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-rle"
version = "1.1.0"
version = "1.2.7"
edition = "2021"
license = "MIT"
description = "A internal library of loro for storing and manipulating run-length encoded data. Do not use it directly."
Expand Down

0 comments on commit c7c1e2f

Please sign in to comment.