chore: bump rust crates

This commit is contained in:
Zixuan Chen 2025-01-22 23:55:12 +08:00
parent a168063460
commit 44752e0128
No known key found for this signature in database
9 changed files with 539 additions and 603 deletions

1109
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -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."

View file

@ -36,6 +36,3 @@ harness = false
[[bench]]
name = "fork"
harness = false
[profile.bench]
debug = true

View file

@ -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"
@ -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 }

View file

@ -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."

View file

@ -1,6 +1,6 @@
[package]
name = "loro-ffi"
version = "1.1.3"
version = "1.3.1"
edition = "2021"
license = "MIT"
publish = false

View file

@ -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."
@ -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 }

View file

@ -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/"

View file

@ -1,6 +1,6 @@
[package]
name = "loro"
version = "1.2.7"
version = "1.3.1"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/loro/"
@ -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 }