chore(rs): bump versions of rust crates

This commit is contained in:
Zixuan Chen 2024-04-09 16:23:48 +08:00
parent 095e93b327
commit 454b4088a6
No known key found for this signature in database
13 changed files with 23 additions and 16 deletions

10
Cargo.lock generated
View file

@ -785,7 +785,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
name = "loro"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"either",
"enum-as-inner 0.6.0",
@ -795,7 +795,7 @@ dependencies = [
[[package]]
name = "loro-common"
version = "0.2.0"
version = "0.4.0"
dependencies = [
"arbitrary",
"enum-as-inner 0.6.0",
@ -812,7 +812,7 @@ dependencies = [
[[package]]
name = "loro-internal"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"append-only-bytes",
"arbitrary",
@ -863,7 +863,7 @@ dependencies = [
[[package]]
name = "loro-preload"
version = "0.2.0"
version = "0.4.0"
dependencies = [
"bytes",
"loro-common",
@ -873,7 +873,7 @@ dependencies = [
[[package]]
name = "loro-rle"
version = "0.2.0"
version = "0.4.0"
dependencies = [
"append-only-bytes",
"arref",

View file

@ -10,6 +10,7 @@ members = [
"crates/loro-wasm",
"crates/fuzz",
]
resolver = "2"
[workspace.dependencies]
enum_dispatch = "0.3.11"

View file

@ -2,6 +2,7 @@
name = "bench-utils"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -2,6 +2,7 @@
name = "examples"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -2,6 +2,7 @@
name = "fuzz"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,6 +1,6 @@
[package]
name = "loro-common"
version = "0.2.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "Common types and functions for Loro. This is an internal lib of Loro."
@ -15,7 +15,7 @@ keywords = ["crdt", "local-first"]
[dependencies]
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.43"
rle = { path = "../rle", version = "0.2.0", package = "loro-rle" }
rle = { path = "../rle", version = "0.4.0", package = "loro-rle" }
wasm-bindgen = { version = "=0.2.90", optional = true }
fxhash = "0.2.1"
enum-as-inner = "0.6.0"

View file

@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"
build = "build.rs"
license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,6 +1,6 @@
[package]
name = "loro-internal"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "Loro internal library. Do not use it directly as it's not stable."
@ -13,9 +13,9 @@ 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 = "0.2.0", package = "loro-rle" }
loro-preload = { path = "../loro-preload", version = "0.2.0" }
loro-common = { path = "../loro-common", version = "0.2.0" }
rle = { path = "../rle", version = "0.4.0", package = "loro-rle" }
loro-preload = { path = "../loro-preload", version = "0.4.0" }
loro-common = { path = "../loro-common", version = "0.4.0" }
smallvec = { version = "1.8.0", features = ["serde"] }
postcard = "1"
fxhash = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "loro-preload"
version = "0.2.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "Loro internal lib for loading data"
@ -15,5 +15,5 @@ keywords = ["crdt", "local-first"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_columnar = { workspace = true }
loro-common = { path = "../loro-common", version = "0.2.0" }
loro-common = { path = "../loro-common", version = "0.4.0" }
bytes = "1.4.0"

View file

@ -3,6 +3,7 @@ name = "pyloro"
version = "0.1.0"
edition = "2021"
license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -2,6 +2,7 @@
name = "loro-wasm"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib", "rlib"]

View file

@ -1,6 +1,6 @@
[package]
name = "loro"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/loro/"
@ -13,7 +13,7 @@ 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 = "0.3.0" }
loro-internal = { path = "../loro-internal", version = "0.4.0" }
enum-as-inner = "0.6.0"
either = "1.9.0"

View file

@ -1,6 +1,6 @@
[package]
name = "loro-rle"
version = "0.2.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "A internal library of loro for storing and manipulating run-length encoded data. Do not use it directly."