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]
2023-01-31 11:30:48 +00:00
flowy-core = { path = "../flowy-core" }
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", features = ["flowy_unit_test"] }
2023-01-31 11:30:48 +00:00
flowy-document= { path = "../flowy-document" }
2021-11-20 02:52:39 +00:00
lib-dispatch = { path = "../lib-dispatch" }
2023-01-30 03:11:19 +00:00
flowy-client-sync = { path = "../flowy-client-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"}
2023-03-03 12:38:31 +00:00
protobuf = {version = "2.28.0"}
#claim = "0.5.0"
tokio = { version = "1.26", features = ["full"]}
futures-util = "0.3.26"
thread-id = "3.3.0"
2021-08-29 14:00:42 +00:00
log = "0.4"
2023-03-03 12:38:31 +00:00
bytes = "1.4"
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"
2023-03-03 12:38:31 +00:00
fake = "2.5.0"
futures = "0.3.26"
serial_test = "0.5.1"
[features]
2023-03-03 12:38:31 +00:00
dart = ["flowy-core/dart"]