mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[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" }
|
|
lib-log = { path = "../lib-log" }
|
|
flowy-user = { path = "../flowy-user" }
|
|
flowy-net = { path = "../flowy-net" }
|
|
flowy-folder = { path = "../flowy-folder", default-features = false }
|
|
flowy-grid = { path = "../flowy-grid", default-features = false }
|
|
flowy-grid-data-model = { path = "../../../shared-lib/flowy-grid-data-model" }
|
|
flowy-database = { path = "../flowy-database" }
|
|
flowy-text-block = { path = "../flowy-text-block", default-features = false }
|
|
flowy-revision = { path = "../flowy-revision" }
|
|
|
|
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"
|
|
|
|
flowy-sync = { path = "../../../shared-lib/flowy-sync" }
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
|
|
[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-folder/http_server", "flowy-text-block/http_server"]
|
|
use_bunyan = ["lib-log/use_bunyan"]
|
|
dart = ["flowy-user/dart", "flowy-net/dart", "flowy-folder/dart", "flowy-sync/dart", "flowy-grid/dart", "flowy-text-block/dart"]
|