Cargo.toml 955 B

1234567891011121314151617181920212223242526272829303132
  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. 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. [dev-dependencies]
  22. nanoid = "0.4.0"
  23. flowy-revision = {path = "../flowy-revision", features = ["flowy_unit_test"]}
  24. serde = { version = "1.0", features = ["derive"] }
  25. serde_json = { version = "1.0" }
  26. parking_lot = "0.12.1"
  27. [features]
  28. flowy_unit_test = []