Cargo.toml 947 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "flowy-client-sync"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. lib-ot = { path = "../../../shared-lib/lib-ot" }
  8. lib-infra = { path = "../../../shared-lib/lib-infra" }
  9. flowy-derive = { path = "../flowy-derive" }
  10. folder-model = { path = "../../../shared-lib/folder-model" }
  11. grid-model = { path = "../../../shared-lib/grid-model" }
  12. revision-model = { path = "../../../shared-lib/revision-model" }
  13. document-model = { path = "../../../shared-lib/document-model" }
  14. flowy-sync = { path = "../../../shared-lib/flowy-sync" }
  15. bytes = "1.0"
  16. tokio = { version = "1", features = ["full"] }
  17. serde = { version = "1.0", features = ["derive", "rc"] }
  18. serde_json = {version = "1.0"}
  19. dissimilar = "1.0"
  20. tracing = { version = "0.1", features = ["log"] }
  21. url = "2.2"
  22. strum = "0.21"
  23. strum_macros = "0.21"
  24. chrono = "0.4.19"
  25. parking_lot = "0.12.1"