AppFlowy-Cloud/libs/collab-stream/Cargo.toml

27 lines
712 B
TOML

[package]
name = "collab-stream"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
redis = { workspace = true, features = ["aio", "tokio-comp", "connection-manager", "streams"] }
tokio = { version = "1.26", features = ["rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.14" }
thiserror = "1.0.58"
anyhow = "1.0.81"
futures = "0.3.30"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
bincode = "1.3.3"
collab-entity.workspace = true
serde_json.workspace = true
chrono = "0.4"
tokio-util = { version = "0.7" }
prost.workspace = true
[dev-dependencies]
futures = "0.3.30"
rand = "0.8.5"