Cargo.toml 941 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "flowy-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-rev-model = { path = "../../../shared-lib/folder-rev-model" }
  11. grid-rev-model = { path = "../../../shared-lib/grid-rev-model" }
  12. flowy-http-model = { path = "../../../shared-lib/flowy-http-model" }
  13. protobuf = {version = "2.18.0"}
  14. bytes = "1.0"
  15. log = "0.4.14"
  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"
  26. dashmap = "5"
  27. futures = "0.3.15"
  28. async-stream = "0.3.2"