mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
32 lines
923 B
TOML
32 lines
923 B
TOML
[package]
|
|
name = "codemp"
|
|
version = "0.4.2"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "codemp"
|
|
|
|
[dependencies]
|
|
# core
|
|
tracing = "0.1"
|
|
tonic = { version = "0.9", features = ["tls", "tls-roots"] }
|
|
prost = { version = "0.11.8", optional = true }
|
|
md5 = "0.7.0"
|
|
uuid = { version = "1.3.1", features = ["v4"] }
|
|
operational-transform = { version = "0.6", features = ["serde"] }
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync", "full"], optional = false }
|
|
tokio-stream = { version = "0.1", optional = false }
|
|
serde = { version = "1", optional = false }
|
|
serde_json = { version = "1", optional = false }
|
|
tracing-subscriber = { version = "0.3", optional = true }
|
|
similar = { version = "2.2", features = ["inline"] }
|
|
lazy_static = { version = "1.4", optional = true }
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.9"
|
|
|
|
[features]
|
|
default = ["proto", "global"]
|
|
proto = ["dep:prost"]
|
|
global = ["dep:lazy_static"]
|
|
sync = []
|