Cargo.toml 714 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "flowy-server-sync"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. revision-model = { path = "../revision-model" }
  8. ws-model = { path = "../ws-model" }
  9. document-model = { path = "../document-model" }
  10. folder-model = { path = "../folder-model" }
  11. flowy-sync = { path = "../flowy-sync" }
  12. bytes = "1.4"
  13. log = "0.4.17"
  14. tokio = { version = "1.26", features = ["full"] }
  15. serde = { version = "1.0", features = ["derive", "rc"] }
  16. lib-ot = { path = "../lib-ot" }
  17. lib-infra = { path = "../lib-infra" }
  18. dashmap = "5"
  19. futures = "0.3.26"
  20. async-stream = "0.3.4"
  21. tracing = { version = "0.1", features = ["log"] }