Cargo.toml 1020 B

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