Cargo.toml 947 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "flowy-revision"
  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. flowy-sync = { path = "../../../shared-lib/flowy-sync" }
  8. lib-ws = { path = "../../../shared-lib/lib-ws" }
  9. lib-infra = { path = "../../../shared-lib/lib-infra" }
  10. flowy-database = { path = "../flowy-database" }
  11. flowy-error = { path = "../flowy-error", features = ["collaboration", "ot", "http_server", "serde", "db"] }
  12. diesel = {version = "1.4.8", features = ["sqlite"]}
  13. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  14. tracing = { version = "0.1", features = ["log"] }
  15. tokio = {version = "1", features = ["sync"]}
  16. bytes = { version = "1.1" }
  17. strum = "0.21"
  18. strum_macros = "0.21"
  19. dashmap = "5"
  20. serde = { version = "1.0", features = ["derive"] }
  21. futures-util = "0.3.15"
  22. async-stream = "0.3.2"
  23. serde_json = {version = "1.0"}
  24. [features]
  25. flowy_unit_test = []