mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
33 lines
776 B
TOML
33 lines
776 B
TOML
[package]
|
|
name = "lib-ws"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde_repr = "0.1"
|
|
serde = "1.0"
|
|
serde_json = {version = "1.0"}
|
|
lib-infra = { path = "../lib-infra" }
|
|
|
|
tokio-tungstenite = "0.15"
|
|
futures-util = "0.3.26"
|
|
futures-channel = "0.3.26"
|
|
tokio = { version = "1.26", features = ["full"]}
|
|
futures = "0.3.26"
|
|
bytes = "1.4"
|
|
pin-project = "1.0"
|
|
futures-core = { version = "0.3", default-features = false }
|
|
url = "2.3.1"
|
|
log = "0.4"
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
protobuf = {version = "2.28.0"}
|
|
strum_macros = "0.21"
|
|
parking_lot = "0.12.1"
|
|
dashmap = "5"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.26", features = ["full"]}
|
|
env_logger = "0.8.4"
|