Cargo.toml 776 B

1234567891011121314151617181920212223242526272829303132
  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.26"
  13. futures-channel = "0.3.26"
  14. tokio = { version = "1.26", features = ["full"]}
  15. futures = "0.3.26"
  16. bytes = "1.4"
  17. pin-project = "1.0"
  18. futures-core = { version = "0.3", default-features = false }
  19. url = "2.3.1"
  20. log = "0.4"
  21. tracing = { version = "0.1", features = ["log"] }
  22. protobuf = {version = "2.28.0"}
  23. strum_macros = "0.21"
  24. parking_lot = "0.12.1"
  25. dashmap = "5"
  26. [dev-dependencies]
  27. tokio = { version = "1.26", features = ["full"]}
  28. env_logger = "0.8.4"