mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
chore: removed unneeded parens
This commit is contained in:
parent
781a130c62
commit
0dfba0064a
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -10,21 +10,21 @@ crate-type = ["cdylib"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# core
|
# core
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
thiserror = { version = "1.0" }
|
thiserror = "1.0"
|
||||||
|
async-trait = "0.1"
|
||||||
# woot
|
# woot
|
||||||
codemp-woot = { git = "ssh://git@github.com/hexedtech/woot.git", features = ["serde"], tag = "v0.1.2" }
|
codemp-woot = { git = "ssh://git@github.com/hexedtech/woot.git", features = ["serde"], tag = "v0.1.2" }
|
||||||
# proto
|
# proto
|
||||||
codemp-proto = { git = "ssh://git@github.com/hexedtech/codemp-proto.git", tag = "v0.6.1" }
|
codemp-proto = { git = "ssh://git@github.com/hexedtech/codemp-proto.git", tag = "v0.6.1" }
|
||||||
uuid = { version = "1.7", features = ["v4"] }
|
uuid = { version = "1.7", features = ["v4"] }
|
||||||
tonic = { version = "0.11", features = ["tls", "tls-roots"] }
|
tonic = { version = "0.11", features = ["tls", "tls-roots"] }
|
||||||
|
postcard = "1.0"
|
||||||
# api
|
# api
|
||||||
similar = { version = "2.2", features = ["inline"] }
|
similar = { version = "2.2", features = ["inline"] }
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync"] }
|
||||||
async-trait = { version = "0.1" }
|
|
||||||
# client
|
# client
|
||||||
tokio-stream = { version = "0.1" }
|
tokio-stream = "0.1"
|
||||||
dashmap = { version = "5.5" }
|
dashmap = "5.5"
|
||||||
postcard = { version = "1.0" }
|
|
||||||
|
|
||||||
# glue (multiple)
|
# glue (multiple)
|
||||||
lazy_static = { version = "1.4", optional = true }
|
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 }
|
pyo3-build-config = { version = "0.19", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = ["lua"]
|
||||||
lua = ["mlua", "lazy_static", "tracing-subscriber"]
|
lua = ["mlua", "lazy_static", "tracing-subscriber"]
|
||||||
java = ["lazy_static", "jni", "tracing-subscriber"]
|
java = ["lazy_static", "jni", "tracing-subscriber"]
|
||||||
js = ["napi-build", "tracing-subscriber", "napi", "napi-derive"]
|
js = ["napi-build", "tracing-subscriber", "napi", "napi-derive"]
|
||||||
|
|
Loading…
Reference in a new issue