Cargo.toml 794 B

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