Cargo.toml 721 B

12345678910111213141516171819202122232425
  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-error = { path = "../flowy-error" }
  11. tracing = { version = "0.1", features = ["log"] }
  12. tokio = {version = "1", features = ["sync"]}
  13. bytes = { version = "1.1" }
  14. strum = "0.21"
  15. strum_macros = "0.21"
  16. dashmap = "5"
  17. serde = { version = "1.0", features = ["derive"] }
  18. futures-util = "0.3.15"
  19. async-stream = "0.3.2"
  20. serde_json = {version = "1.0"}
  21. [features]
  22. flowy_unit_test = []