Cargo.toml 691 B

1234567891011121314151617181920212223242526272829
  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. tokio-tungstenite = "0.15"
  10. futures-util = "0.3.17"
  11. futures-channel = "0.3.17"
  12. tokio = {version = "1", features = ["full"]}
  13. futures = "0.3.17"
  14. bytes = "1.0"
  15. pin-project = "1.0.0"
  16. futures-core = { version = "0.3", default-features = false }
  17. paste = "1"
  18. url = "2.2.2"
  19. log = "0.4"
  20. protobuf = {version = "2.18.0"}
  21. strum = "0.21"
  22. strum_macros = "0.21"
  23. [dev-dependencies]
  24. tokio = {version = "1", features = ["full"]}
  25. env_logger = "0.8.2"