Cargo.toml 1.1 KB

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