AppFlowy/frontend/rust-lib/flowy-net/Cargo.toml

29 lines
933 B
TOML
Raw Normal View History

2021-12-12 13:48:52 +00:00
[package]
name = "flowy-net"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-14 07:31:44 +00:00
lib-dispatch = { path = "../lib-dispatch" }
flowy-error = { path = "../flowy-error" }
2021-12-12 13:48:52 +00:00
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
2021-12-14 07:31:44 +00:00
lib-infra = { path = "../../../shared-lib/lib-infra" }
lib-ws = { path = "../../../shared-lib/lib-ws" }
2021-12-13 05:55:44 +00:00
protobuf = {version = "2.18.0"}
2021-12-14 07:31:44 +00:00
bytes = { version = "1.0" }
anyhow = "1.0"
tokio = {version = "1", features = ["sync"]}
parking_lot = "0.11"
strum = "0.21"
strum_macros = "0.21"
tracing = { version = "0.1", features = ["log"] }
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration", optional = true}
lazy_static = {version = "1.4.0", optional = true}
dashmap = {version = "4.0", optional = true}
[features]
2021-12-15 08:28:18 +00:00
ws_mock = ["flowy-collaboration", "lazy_static", "dashmap"]
http_server = []