2021-09-16 10:31:25 +00:00
|
|
|
[package]
|
2021-11-19 06:38:11 +00:00
|
|
|
name = "lib-ws"
|
2021-09-16 10:31:25 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-30 03:16:47 +00:00
|
|
|
serde_repr = "0.1"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = {version = "1.0"}
|
2021-12-13 05:55:44 +00:00
|
|
|
lib-infra = { path = "../lib-infra" }
|
2021-09-16 10:31:25 +00:00
|
|
|
|
|
|
|
tokio-tungstenite = "0.15"
|
2023-03-03 12:38:31 +00:00
|
|
|
futures-util = "0.3.26"
|
|
|
|
futures-channel = "0.3.26"
|
|
|
|
tokio = { version = "1.26", features = ["full"]}
|
|
|
|
futures = "0.3.26"
|
|
|
|
bytes = "1.4"
|
2022-12-19 02:47:40 +00:00
|
|
|
pin-project = "1.0"
|
2021-09-16 10:31:25 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2023-03-03 12:38:31 +00:00
|
|
|
url = "2.3.1"
|
2021-09-16 10:31:25 +00:00
|
|
|
log = "0.4"
|
2021-11-03 07:37:38 +00:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2023-03-03 12:38:31 +00:00
|
|
|
protobuf = {version = "2.28.0"}
|
2021-09-16 15:07:15 +00:00
|
|
|
strum_macros = "0.21"
|
2022-11-08 05:51:12 +00:00
|
|
|
parking_lot = "0.12.1"
|
2022-06-14 00:37:44 +00:00
|
|
|
dashmap = "5"
|
2021-09-16 15:07:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-03 12:38:31 +00:00
|
|
|
tokio = { version = "1.26", features = ["full"]}
|
|
|
|
env_logger = "0.8.4"
|