Cargo.toml 670 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "flowy-collaboration"
  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 = "../lib-ot" }
  8. lib-infra = { path = "../lib-infra" }
  9. flowy-derive = { path = "../flowy-derive" }
  10. protobuf = {version = "2.18.0"}
  11. bytes = "1.0"
  12. log = "0.4.14"
  13. md5 = "0.7.0"
  14. tokio = { version = "1", features = ["full"] }
  15. serde = { version = "1.0", features = ["derive"] }
  16. tracing = { version = "0.1", features = ["log"] }
  17. url = "2.2"
  18. strum = "0.21"
  19. strum_macros = "0.21"
  20. chrono = "0.4.19"
  21. parking_lot = "0.11"
  22. dashmap = "4.0"
  23. futures = "0.3.15"
  24. async-stream = "0.3.2"