Cargo.toml 913 B

1234567891011121314151617181920212223242526272829303132333435
  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. flowy-folder-data-model = { path = "../flowy-folder-data-model" }
  11. protobuf = {version = "2.18.0"}
  12. bytes = "1.0"
  13. log = "0.4.14"
  14. md5 = "0.7.0"
  15. tokio = { version = "1", features = ["full"] }
  16. serde = { version = "1.0", features = ["derive", "rc"] }
  17. serde_json = {version = "1.0"}
  18. dissimilar = "1.0"
  19. tracing = { version = "0.1", features = ["log"] }
  20. url = "2.2"
  21. strum = "0.21"
  22. strum_macros = "0.21"
  23. chrono = "0.4.19"
  24. parking_lot = "0.11"
  25. dashmap = "4.0"
  26. futures = "0.3.15"
  27. async-stream = "0.3.2"
  28. [build-dependencies]
  29. lib-infra = { path = "../lib-infra", features = ["pb_gen"] }
  30. [features]
  31. dart = ["lib-infra/dart"]