AppFlowy/frontend/rust-lib/flowy-test/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2021-07-06 06:14:47 +00:00
[package]
name = "flowy-test"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flowy-sdk = { path = "../flowy-sdk", default-features = false }
2021-07-14 15:00:58 +00:00
flowy-user = { path = "../flowy-user"}
2021-12-15 08:28:18 +00:00
flowy-net = { path = "../flowy-net"}
flowy-folder = { path = "../flowy-folder", default-features = false}
2021-11-20 02:52:39 +00:00
lib-dispatch = { path = "../lib-dispatch" }
2022-03-19 08:52:28 +00:00
flowy-sync = { path = "../../../shared-lib/flowy-sync" }
2021-12-09 03:00:05 +00:00
lib-ot = { path = "../../../shared-lib/lib-ot" }
2021-12-13 05:55:44 +00:00
lib-infra = { path = "../../../shared-lib/lib-infra" }
2021-07-06 06:14:47 +00:00
serde = { version = "1.0", features = ["derive"] }
2021-12-09 03:00:05 +00:00
serde_json = {version = "1.0"}
2021-07-06 06:14:47 +00:00
bincode = { version = "1.3"}
protobuf = {version = "2.24.1"}
claim = "0.5.0"
tokio = { version = "1", features = ["full"]}
futures-util = "0.3.15"
thread-id = "3.3.0"
2021-08-29 14:00:42 +00:00
log = "0.4"
2021-09-04 01:00:15 +00:00
bytes = "1.0"
2022-04-11 07:27:03 +00:00
nanoid = "0.4.0"
2021-09-04 01:00:15 +00:00
[dev-dependencies]
2022-04-28 13:16:28 +00:00
quickcheck = "1.0.3"
2021-09-04 01:00:15 +00:00
quickcheck_macros = "0.9.1"
2022-07-04 08:38:35 +00:00
fake = "2.4.3"
2021-09-04 01:00:15 +00:00
claim = "0.4.0"
futures = "0.3.15"
serial_test = "0.5.1"
[features]
dart = ["flowy-sdk/dart"]