Cargo.toml 820 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "flowy-ws"
  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-derive = { path = "../flowy-derive" }
  8. flowy-net = { path = "../flowy-net" }
  9. flowy-infra = { path = "../flowy-infra" }
  10. tokio-tungstenite = "0.15"
  11. futures-util = "0.3.17"
  12. futures-channel = "0.3.17"
  13. tokio = {version = "1", features = ["full"]}
  14. futures = "0.3.17"
  15. bytes = "1.0"
  16. pin-project = "1.0.0"
  17. futures-core = { version = "0.3", default-features = false }
  18. paste = "1"
  19. url = "2.2.2"
  20. log = "0.4"
  21. tracing = { version = "0.1", features = ["log"] }
  22. protobuf = {version = "2.18.0"}
  23. strum = "0.21"
  24. strum_macros = "0.21"
  25. parking_lot = "0.11"
  26. dashmap = "4.0"
  27. [dev-dependencies]
  28. tokio = {version = "1", features = ["full"]}
  29. env_logger = "0.8.2"