Skip to content

Commit

Permalink
Merge pull request #85 from hexedtech/chore/dependencies
Browse files Browse the repository at this point in the history
chore: update dependencies, remove lazy_static
  • Loading branch information
zaaarf authored Feb 18, 2025
2 parents 0507397 + ecbb2e3 commit 83c5614
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 14 deletions.
35 changes: 27 additions & 8 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# core
tracing = "0.1"
thiserror = "1.0"
thiserror = "2.0"
# crdt
diamond-types = "1.0"
# proto
codemp-proto = "0.7"
uuid = { version = "1.10", features = ["v4"] }
uuid = { version = "1.13", features = ["v4"] }
tonic = { version = "0.12", features = ["tls", "tls-roots"] }
# api
tokio = { version = "1.40", features = ["macros", "rt-multi-thread", "sync"] }
tokio = { version = "1.43", features = ["macros", "rt-multi-thread", "sync"] }
xxhash-rust = { version = "0.8", features = ["xxh3"] }
# client
tokio-stream = "0.1"
Expand All @@ -39,7 +39,6 @@ dashmap = "6.1"
tracing-subscriber = { version = "0.3", optional = true }

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

Expand Down Expand Up @@ -71,10 +70,10 @@ serialize = ["dep:serde", "uuid/serde"]
# special tests which require more setup
test-e2e = []
# ffi
java = ["dep:lazy_static", "dep:jni", "dep:tracing-subscriber", "dep:jni-toolbox"]
java = ["dep:jni", "dep:tracing-subscriber", "dep:jni-toolbox"]
js = ["dep:napi-build", "dep:tracing-subscriber", "dep:napi", "dep:napi-derive"]
py = ["dep:pyo3", "dep:tracing-subscriber", "dep:pyo3-build-config"]
lua = ["serialize", "dep:mlua", "dep:tracing-subscriber", "dep:lazy_static"]
lua = ["serialize", "dep:mlua", "dep:tracing-subscriber"]
# ffi variants
lua-jit = ["mlua?/luajit"]
lua-54 = ["mlua?/lua54"]
Expand Down

0 comments on commit 83c5614

Please sign in to comment.