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]] [[package]]
name = "loro" name = "loro"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"either", "either",
"enum-as-inner 0.6.0", "enum-as-inner 0.6.0",
@ -795,7 +795,7 @@ dependencies = [
[[package]] [[package]]
name = "loro-common" name = "loro-common"
version = "0.2.0" version = "0.4.0"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"enum-as-inner 0.6.0", "enum-as-inner 0.6.0",
@ -812,7 +812,7 @@ dependencies = [
[[package]] [[package]]
name = "loro-internal" name = "loro-internal"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"append-only-bytes", "append-only-bytes",
"arbitrary", "arbitrary",
@ -863,7 +863,7 @@ dependencies = [
[[package]] [[package]]
name = "loro-preload" name = "loro-preload"
version = "0.2.0" version = "0.4.0"
dependencies = [ dependencies = [
"bytes", "bytes",
"loro-common", "loro-common",
@ -873,7 +873,7 @@ dependencies = [
[[package]] [[package]]
name = "loro-rle" name = "loro-rle"
version = "0.2.0" version = "0.4.0"
dependencies = [ dependencies = [
"append-only-bytes", "append-only-bytes",
"arref", "arref",

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "loro-internal" name = "loro-internal"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
description = "Loro internal library. Do not use it directly as it's not stable." 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
rle = { path = "../rle", version = "0.2.0", package = "loro-rle" } rle = { path = "../rle", version = "0.4.0", package = "loro-rle" }
loro-preload = { path = "../loro-preload", version = "0.2.0" } loro-preload = { path = "../loro-preload", version = "0.4.0" }
loro-common = { path = "../loro-common", version = "0.2.0" } loro-common = { path = "../loro-common", version = "0.4.0" }
smallvec = { version = "1.8.0", features = ["serde"] } smallvec = { version = "1.8.0", features = ["serde"] }
postcard = "1" postcard = "1"
fxhash = { workspace = true } fxhash = { workspace = true }

View file

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

View file

@ -3,6 +3,7 @@ name = "pyloro"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # 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" name = "loro-wasm"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
publish = false
[lib] [lib]
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "loro" name = "loro"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
documentation = "https://docs.rs/loro/" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [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" enum-as-inner = "0.6.0"
either = "1.9.0" either = "1.9.0"

View file

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