23 lines
499 B
TOML
23 lines
499 B
TOML
[package]
|
|
name = "collab-rt-protocol"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
yrs.workspace = true
|
|
thiserror = "1.0.56"
|
|
serde.workspace = true
|
|
collab = { workspace = true }
|
|
bincode.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
async-trait.workspace = true
|
|
tokio = "1.36.0"
|
|
collab-entity.workspace = true
|
|
|
|
[features]
|
|
verbose_log = [] |