mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
a0a16cc493
* chore: add search crate * chore: add task order test * chore: enable timeout * add task crate * chore: run filter task * chore: run filter task * chore: filter rows * chore: cache filter result * chore: filter rows when open a grid * chore: add tests * test: add number filter test * test: add checkbox fitler test * chore: fix test Co-authored-by: nathan <nathan@appflowy.io>
43 lines
1.5 KiB
TOML
43 lines
1.5 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 }
|
|
grid-rev-model = { path = "../../../shared-lib/grid-rev-model" }
|
|
flowy-database = { path = "../flowy-database" }
|
|
flowy-document = { path = "../flowy-document", default-features = false }
|
|
flowy-revision = { path = "../flowy-revision" }
|
|
flowy-task = { path = "../flowy-task" }
|
|
|
|
tracing = { version = "0.1" }
|
|
futures-core = { version = "0.3", default-features = false }
|
|
bytes = "1.0"
|
|
tokio = { version = "1", features = ["rt"] }
|
|
parking_lot = "0.12.1"
|
|
|
|
flowy-http-model = { path = "../../../shared-lib/flowy-http-model" }
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
|
|
[features]
|
|
http_sync = ["flowy-folder/cloud_sync", "flowy-document/cloud_sync"]
|
|
native_sync = ["flowy-folder/cloud_sync", "flowy-document/cloud_sync"]
|
|
use_bunyan = ["lib-log/use_bunyan"]
|
|
dart = [
|
|
"flowy-user/dart",
|
|
"flowy-net/dart",
|
|
"flowy-folder/dart",
|
|
"flowy-grid/dart",
|
|
"flowy-document/dart",
|
|
]
|
|
openssl_vendored = ["flowy-database/openssl_vendored"]
|