44 lines
1.6 KiB
TOML
Raw Normal View History

[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]
lib-dispatch = { path = "../lib-dispatch" }
2021-11-19 15:04:56 +08:00
lib-log = { path = "../lib-log" }
2021-06-30 23:11:27 +08:00
flowy-user = { path = "../flowy-user" }
2021-12-13 13:55:44 +08:00
flowy-net = { path = "../flowy-net" }
flowy-folder = { path = "../flowy-folder", default-features = false }
2022-03-02 22:43:04 +08:00
flowy-grid = { path = "../flowy-grid", default-features = false }
2022-03-15 19:00:28 +08:00
flowy-grid-data-model = { path = "../../../shared-lib/flowy-grid-data-model" }
2021-07-13 23:08:20 +08:00
flowy-database = { path = "../flowy-database" }
2022-03-19 16:52:28 +08:00
flowy-text-block = { path = "../flowy-text-block", default-features = false }
flowy-revision = { path = "../flowy-revision" }
2021-12-13 13:55:44 +08:00
2021-07-03 14:14:10 +08:00
tracing = { version = "0.1" }
2021-06-30 23:11:27 +08:00
log = "0.4.14"
futures-core = { version = "0.3", default-features = false }
color-eyre = { version = "0.5", default-features = false }
2021-08-20 22:00:03 +08:00
bytes = "1.0"
2021-09-17 19:03:46 +08:00
tokio = { version = "1", features = ["rt"] }
2021-09-20 15:38:55 +08:00
parking_lot = "0.11"
2021-11-20 10:52:39 +08:00
2022-03-19 16:52:28 +08:00
flowy-sync = { path = "../../../shared-lib/flowy-sync" }
2021-11-20 10:52:39 +08:00
lib-ws = { path = "../../../shared-lib/lib-ws" }
2021-12-13 13:55:44 +08:00
lib-infra = { path = "../../../shared-lib/lib-infra" }
2021-11-20 10:52:39 +08:00
2021-06-30 23:11:27 +08:00
[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"]}
2021-09-05 13:50:23 +08:00
futures-util = "0.3.15"
[features]
2022-03-19 16:52:28 +08:00
http_server = ["flowy-user/http_server", "flowy-folder/http_server", "flowy-text-block/http_server"]
use_bunyan = ["lib-log/use_bunyan"]
2022-03-19 16:52:28 +08:00
dart = ["flowy-user/dart", "flowy-net/dart", "flowy-folder/dart", "flowy-sync/dart", "flowy-grid/dart", "flowy-text-block/dart"]