diff --git a/Cargo.toml b/Cargo.toml index efd8698..9307a29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]