1234567891011121314151617181920 |
- [package]
- name = "flowy-sync"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- lib-ot = { path = "../lib-ot" }
- lib-infra = { path = "../lib-infra" }
- revision-model = { path = "../revision-model" }
- folder-model = { path = "../folder-model" }
- ws-model = { path = "../ws-model" }
- document-model = { path = "../document-model" }
- strum = "0.21"
- strum_macros = "0.21"
- parking_lot = "0.12.1"
- tokio = { version = "1.26", features = ["full"] }
- serde = { version = "1.0", features = ["derive", "rc"] }
- tracing = { version = "0.1", features = ["log"] }
|