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"}
|
2023-04-04 00:41:16 +00:00
|
|
|
flowy-folder2 = { path = "../flowy-folder2", features = ["test_helper"] }
|
2023-06-07 06:52:35 +00:00
|
|
|
flowy-database2 = { path = "../flowy-database2" }
|
2023-06-15 02:37:51 +00:00
|
|
|
flowy-document2 = { path = "../flowy-document2" }
|
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" }
|
2023-05-21 10:53:59 +00:00
|
|
|
flowy-server = { path = "../flowy-server" }
|
2023-06-05 08:09:18 +00:00
|
|
|
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"
|
2021-07-09 06:02:42 +00:00
|
|
|
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"
|
2023-05-21 03:13:22 +00:00
|
|
|
tempdir = "0.3.7"
|
2023-05-23 15:55:21 +00:00
|
|
|
tracing = { version = "0.1.27" }
|
|
|
|
parking_lot = "0.12.1"
|
|
|
|
dotenv = "0.15.0"
|
2021-09-04 01:00:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-23 15:55:21 +00:00
|
|
|
uuid = { version = "1.3.3", features = ["v4"] }
|
2022-02-08 06:57:16 +00:00
|
|
|
|
|
|
|
[features]
|
2023-03-03 12:38:31 +00:00
|
|
|
dart = ["flowy-core/dart"]
|