Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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-http-model = { path = "../../../shared-lib/flowy-http-model" }
  8. lib-ws = { path = "../../../shared-lib/lib-ws" }
  9. lib-infra = { path = "../../../shared-lib/lib-infra" }
  10. flowy-error = { path = "../flowy-error" }
  11. flowy-revision-persistence= { path = "../flowy-revision-persistence" }
  12. tracing = { version = "0.1", features = ["log"] }
  13. tokio = {version = "1", features = ["sync"]}
  14. bytes = { version = "1.1" }
  15. strum = "0.21"
  16. strum_macros = "0.21"
  17. dashmap = "5"
  18. serde = { version = "1.0", features = ["derive"] }
  19. futures-util = "0.3.15"
  20. futures = "0.3.15"
  21. async-stream = "0.3.2"
  22. serde_json = {version = "1.0"}
  23. [dev-dependencies]
  24. nanoid = "0.4.0"
  25. flowy-revision = {path = "../flowy-revision", features = ["flowy_unit_test"]}
  26. serde = { version = "1.0", features = ["derive"] }
  27. serde_json = { version = "1.0" }
  28. parking_lot = "0.12.1"
  29. [features]
  30. flowy_unit_test = []