Cargo.toml 451 B

1234567891011121314151617
  1. [package]
  2. name = "flowy-client-ws"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. lib-ws = { path = "../lib-ws" }
  8. lib-infra = { path = "../lib-infra" }
  9. futures-util = "0.3.26"
  10. tokio = { version = "1.26", features = ["sync"]}
  11. parking_lot = "0.12.1"
  12. tracing = { version = "0.1", features = ["log"] }
  13. thiserror = "1.0"
  14. serde_repr = "0.1"
  15. serde = "1.0"