Cargo.toml 906 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. flowy-derive = { path = "../flowy-derive" }
  8. lib-infra = { path = "../lib-infra" }
  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. tracing = { version = "0.1", features = ["log"] }
  21. protobuf = {version = "2.18.0"}
  22. strum = "0.21"
  23. strum_macros = "0.21"
  24. parking_lot = "0.11"
  25. dashmap = "5"
  26. [build-dependencies]
  27. lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
  28. [dev-dependencies]
  29. tokio = {version = "1", features = ["full"]}
  30. env_logger = "0.8.2"
  31. [features]
  32. dart = ["lib-infra/dart"]