Cargo.toml 770 B

1234567891011121314151617181920212223242526272829303132
  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. protobuf = {version = "2.18.0"}
  22. strum = "0.21"
  23. strum_macros = "0.21"
  24. parking_lot = "0.11"
  25. dashmap = "4.0"
  26. [dev-dependencies]
  27. tokio = {version = "1", features = ["full"]}
  28. env_logger = "0.8.2"