Cargo.toml 974 B

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