mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
23 lines
676 B
TOML
23 lines
676 B
TOML
[package]
|
|
name = "flowy-virtual-net"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
flowy-net = { path = "../flowy-net" }
|
|
bytes = { version = "1.0" }
|
|
parking_lot = "0.11"
|
|
tokio = {version = "1", features = ["sync"]}
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
# flowy-collaboration and dashmap would be optional
|
|
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration"}
|
|
dashmap = {version = "4.0"}
|
|
|
|
[features]
|
|
flowy_unit_test = []
|
|
http_server = [] |