chore: removed unneeded parens

This commit is contained in:
əlemi 2024-08-10 16:13:44 +02:00
parent 781a130c62
commit 0dfba0064a
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -10,21 +10,21 @@ crate-type = ["cdylib"]
[dependencies]
# core
tracing = "0.1"
thiserror = { version = "1.0" }
thiserror = "1.0"
async-trait = "0.1"
# woot
codemp-woot = { git = "ssh://git@github.com/hexedtech/woot.git", features = ["serde"], tag = "v0.1.2" }
# proto
codemp-proto = { git = "ssh://git@github.com/hexedtech/codemp-proto.git", tag = "v0.6.1" }
uuid = { version = "1.7", features = ["v4"] }
tonic = { version = "0.11", features = ["tls", "tls-roots"] }
postcard = "1.0"
# api
similar = { version = "2.2", features = ["inline"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync"] }
async-trait = { version = "0.1" }
# client
tokio-stream = { version = "0.1" }
dashmap = { version = "5.5" }
postcard = { version = "1.0" }
tokio-stream = "0.1"
dashmap = "5.5"
# glue (multiple)
lazy_static = { version = "1.4", optional = true }
@ -51,7 +51,7 @@ napi-build = { version = "2", optional = true }
pyo3-build-config = { version = "0.19", optional = true }
[features]
default = []
default = ["lua"]
lua = ["mlua", "lazy_static", "tracing-subscriber"]
java = ["lazy_static", "jni", "tracing-subscriber"]
js = ["napi-build", "tracing-subscriber", "napi", "napi-derive"]