Cargo.toml 632 B

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