AppFlowy/shared-lib/flowy-server-sync/Cargo.toml

24 lines
714 B
TOML
Raw Normal View History

2023-01-30 03:11:19 +00:00
[package]
name = "flowy-server-sync"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
revision-model = { path = "../revision-model" }
ws-model = { path = "../ws-model" }
document-model = { path = "../document-model" }
folder-model = { path = "../folder-model" }
flowy-sync = { path = "../flowy-sync" }
2023-03-03 12:38:31 +00:00
bytes = "1.4"
log = "0.4.17"
tokio = { version = "1.26", features = ["full"] }
2023-01-30 03:11:19 +00:00
serde = { version = "1.0", features = ["derive", "rc"] }
lib-ot = { path = "../lib-ot" }
lib-infra = { path = "../lib-infra" }
dashmap = "5"
2023-03-03 12:38:31 +00:00
futures = "0.3.26"
async-stream = "0.3.4"
2023-01-30 03:11:19 +00:00
tracing = { version = "0.1", features = ["log"] }