AppFlowy/rust-lib/flowy-ws/Cargo.toml

33 lines
820 B
TOML
Raw Normal View History

2021-09-16 10:31:25 +00:00
[package]
name = "flowy-ws"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flowy-derive = { path = "../flowy-derive" }
2021-09-16 15:07:15 +00:00
flowy-net = { path = "../flowy-net" }
flowy-infra = { path = "../flowy-infra" }
2021-09-16 10:31:25 +00:00
tokio-tungstenite = "0.15"
2021-09-16 15:07:15 +00:00
futures-util = "0.3.17"
futures-channel = "0.3.17"
tokio = {version = "1", features = ["full"]}
futures = "0.3.17"
2021-09-23 09:50:28 +00:00
bytes = "1.0"
2021-09-16 10:31:25 +00:00
pin-project = "1.0.0"
futures-core = { version = "0.3", default-features = false }
paste = "1"
url = "2.2.2"
log = "0.4"
2021-11-03 07:37:38 +00:00
tracing = { version = "0.1", features = ["log"] }
2021-09-16 10:31:25 +00:00
protobuf = {version = "2.18.0"}
strum = "0.21"
2021-09-16 15:07:15 +00:00
strum_macros = "0.21"
2021-09-30 09:24:02 +00:00
parking_lot = "0.11"
dashmap = "4.0"
2021-09-16 15:07:15 +00:00
[dev-dependencies]
2021-09-17 11:03:46 +00:00
tokio = {version = "1", features = ["full"]}
env_logger = "0.8.2"