Skip to content

Commit 83c5614

Browse files
authored
Merge pull request #85 from hexedtech/chore/dependencies
chore: update dependencies, remove lazy_static
2 parents 0507397 + ecbb2e3 commit 83c5614

2 files changed

Lines changed: 32 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 27 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ crate-type = ["cdylib", "rlib"]
2121
[dependencies]
2222
# core
2323
tracing = "0.1"
24-
thiserror = "1.0"
24+
thiserror = "2.0"
2525
# crdt
2626
diamond-types = "1.0"
2727
# proto
2828
codemp-proto = "0.7"
29-
uuid = { version = "1.10", features = ["v4"] }
29+
uuid = { version = "1.13", features = ["v4"] }
3030
tonic = { version = "0.12", features = ["tls", "tls-roots"] }
3131
# api
32-
tokio = { version = "1.40", features = ["macros", "rt-multi-thread", "sync"] }
32+
tokio = { version = "1.43", features = ["macros", "rt-multi-thread", "sync"] }
3333
xxhash-rust = { version = "0.8", features = ["xxh3"] }
3434
# client
3535
tokio-stream = "0.1"
@@ -39,7 +39,6 @@ dashmap = "6.1"
3939
tracing-subscriber = { version = "0.3", optional = true }
4040

4141
# glue (java)
42-
lazy_static = { version = "1.5", optional = true }
4342
jni = { version = "0.21", features = ["invocation"], optional = true }
4443
jni-toolbox = { version = "0.2", optional = true, features = ["uuid"] }
4544

@@ -71,10 +70,10 @@ serialize = ["dep:serde", "uuid/serde"]
7170
# special tests which require more setup
7271
test-e2e = []
7372
# ffi
74-
java = ["dep:lazy_static", "dep:jni", "dep:tracing-subscriber", "dep:jni-toolbox"]
73+
java = ["dep:jni", "dep:tracing-subscriber", "dep:jni-toolbox"]
7574
js = ["dep:napi-build", "dep:tracing-subscriber", "dep:napi", "dep:napi-derive"]
7675
py = ["dep:pyo3", "dep:tracing-subscriber", "dep:pyo3-build-config"]
77-
lua = ["serialize", "dep:mlua", "dep:tracing-subscriber", "dep:lazy_static"]
76+
lua = ["serialize", "dep:mlua", "dep:tracing-subscriber"]
7877
# ffi variants
7978
lua-jit = ["mlua?/luajit"]
8079
lua-54 = ["mlua?/lua54"]

0 commit comments

Comments
 (0)