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

37 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-folder2 = { path = "../flowy-folder2", features = ["test_helper"] }
2021-11-20 02:52:39 +00:00
lib-dispatch = { path = "../lib-dispatch" }
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" }
flowy-server = { path = "../flowy-server" }
flowy-notification = { path = "../flowy-notification" }
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"}
tokio = { version = "1.26", features = ["full"]}
futures-util = "0.3.26"
thread-id = "3.3.0"
2023-03-03 12:38:31 +00:00
bytes = "1.4"
2022-04-11 07:27:03 +00:00
nanoid = "0.4.0"
tempdir = "0.3.7"
tracing = { version = "0.1.27" }
parking_lot = "0.12.1"
dotenv = "0.15.0"
2021-09-04 01:00:15 +00:00
[dev-dependencies]
uuid = { version = "1.3.3", features = ["v4"] }
[features]
2023-03-03 12:38:31 +00:00
dart = ["flowy-core/dart"]