AppFlowy/shared-lib/lib-ws/Cargo.toml

38 lines
884 B
TOML
Raw Normal View History

2021-09-16 10:31:25 +00:00
[package]
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]
flowy-derive = { path = "../flowy-derive" }
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"
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"
parking_lot = "0.12.1"
2022-06-14 00:37:44 +00:00
dashmap = "5"
2021-09-16 15:07:15 +00:00
[build-dependencies]
2022-12-01 06:56:20 +00:00
flowy-codegen= { path = "../flowy-codegen"}
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"
[features]
2022-12-01 06:56:20 +00:00
dart = ["flowy-codegen/dart"]