123456789101112131415161718192021222324252627282930313233343536 |
- [package]
- name = "flowy-sdk"
- version = "0.1.0"
- edition = "2018"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- flowy-dispatch = { path = "../flowy-dispatch", features = ["use_tracing"]}
- flowy-log = { path = "../flowy-log" }
- flowy-user = { path = "../flowy-user" }
- flowy-infra = { path = "../flowy-infra" }
- flowy-workspace = { path = "../flowy-workspace" }
- flowy-database = { path = "../flowy-database" }
- flowy-document = { path = "../flowy-document" }
- flowy-ws = { path = "../flowy-ws" }
- flowy-net = { path = "../flowy-net" }
- tracing = { version = "0.1" }
- log = "0.4.14"
- futures-core = { version = "0.3", default-features = false }
- color-eyre = { version = "0.5", default-features = false }
- bytes = "1.0"
- tokio = { version = "1", features = ["rt"] }
- parking_lot = "0.11"
- [dev-dependencies]
- serde = { version = "1.0", features = ["derive"] }
- bincode = { version = "1.3"}
- protobuf = {version = "2.24.1"}
- claim = "0.5.0"
- tokio = { version = "1", features = ["full"]}
- futures-util = "0.3.15"
- [features]
- http_server = ["flowy-user/http_server", "flowy-workspace/http_server", "flowy-document/http_server"]
- use_bunyan = ["flowy-log/use_bunyan"]
|