1234567891011121314151617181920212223 |
- [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 = []
|