mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
chore: un-pin patch
This commit is contained in:
parent
29ffba3309
commit
6448dea3fb
1 changed files with 9 additions and 10 deletions
19
Cargo.toml
19
Cargo.toml
|
@ -10,32 +10,31 @@ crate-type = ["cdylib"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# core
|
# core
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
thiserror = { version = "1.0.57" }
|
thiserror = { version = "1.0" }
|
||||||
# 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.0", features = ["tls", "tls-roots"] }
|
tonic = { version = "0.11", features = ["tls", "tls-roots"] }
|
||||||
# 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" }
|
async-trait = { version = "0.1" }
|
||||||
# client
|
# client
|
||||||
tokio-stream = { version = "0.1" }
|
tokio-stream = { version = "0.1" }
|
||||||
dashmap = { version = "5.5.3" }
|
dashmap = { version = "5.5" }
|
||||||
postcard = { version = "1.0.8" }
|
postcard = { version = "1.0" }
|
||||||
|
|
||||||
# glue (multiple)
|
# glue (multiple)
|
||||||
lazy_static = { version = "1.4.0", optional = true }
|
lazy_static = { version = "1.4", optional = true }
|
||||||
tracing-subscriber = { version = "0.3.18", optional = true }
|
tracing-subscriber = { version = "0.3", optional = true }
|
||||||
|
|
||||||
# glue (java)
|
# glue (java)
|
||||||
jni = { version = "0.21.1", features = ["invocation"], optional = true }
|
jni = { version = "0.21", features = ["invocation"], optional = true }
|
||||||
|
|
||||||
# glue (lua)
|
# glue (lua)
|
||||||
mlua = { version = "0.9.6", features = ["module", "luajit", "send"], optional = true }
|
mlua = { version = "0.9", features = ["module", "luajit", "send"], optional = true }
|
||||||
derive_more = { version = "0.99.17", optional = true }
|
|
||||||
|
|
||||||
# glue (js)
|
# glue (js)
|
||||||
napi = { version = "2.16", features = ["full"], optional = true }
|
napi = { version = "2.16", features = ["full"], optional = true }
|
||||||
|
@ -49,7 +48,7 @@ pyo3-asyncio = { version = "0.20", features = ["tokio-runtime"], optional = true
|
||||||
# glue (js)
|
# glue (js)
|
||||||
napi-build = { version = "2", optional = true }
|
napi-build = { version = "2", optional = true }
|
||||||
# glue (python)
|
# glue (python)
|
||||||
pyo3-build-config = { version = "0.19.2", optional = true }
|
pyo3-build-config = { version = "0.19", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|
Loading…
Reference in a new issue