2022-09-18 01:30:59 +00:00
|
|
|
[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 }
|
2022-11-08 05:51:12 +00:00
|
|
|
grid-rev-model = { path = "../../../shared-lib/grid-rev-model" }
|
2022-09-18 01:30:59 +00:00
|
|
|
flowy-database = { path = "../flowy-database" }
|
2022-10-13 15:29:37 +00:00
|
|
|
flowy-document = { path = "../flowy-document", default-features = false }
|
2022-09-18 01:30:59 +00:00
|
|
|
flowy-revision = { path = "../flowy-revision" }
|
2022-11-13 14:23:57 +00:00
|
|
|
flowy-task = { path = "../flowy-task" }
|
2022-09-18 01:30:59 +00:00
|
|
|
|
|
|
|
tracing = { version = "0.1" }
|
|
|
|
futures-core = { version = "0.3", default-features = false }
|
|
|
|
bytes = "1.0"
|
|
|
|
tokio = { version = "1", features = ["rt"] }
|
2022-11-08 05:51:12 +00:00
|
|
|
parking_lot = "0.12.1"
|
2022-09-18 01:30:59 +00:00
|
|
|
|
2022-11-08 13:13:28 +00:00
|
|
|
flowy-http-model = { path = "../../../shared-lib/flowy-http-model" }
|
2022-09-18 01:30:59 +00:00
|
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
|
|
|
|
|
|
[features]
|
2022-10-13 15:29:37 +00:00
|
|
|
http_sync = ["flowy-folder/cloud_sync", "flowy-document/cloud_sync"]
|
|
|
|
native_sync = ["flowy-folder/cloud_sync", "flowy-document/cloud_sync"]
|
2022-09-18 01:30:59 +00:00
|
|
|
use_bunyan = ["lib-log/use_bunyan"]
|
|
|
|
dart = [
|
|
|
|
"flowy-user/dart",
|
|
|
|
"flowy-net/dart",
|
|
|
|
"flowy-folder/dart",
|
|
|
|
"flowy-grid/dart",
|
2022-10-13 15:29:37 +00:00
|
|
|
"flowy-document/dart",
|
2022-09-18 01:30:59 +00:00
|
|
|
]
|
|
|
|
openssl_vendored = ["flowy-database/openssl_vendored"]
|