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"}
|
2021-07-14 15:00:58 +00:00
|
|
|
flowy-user = { path = "../flowy-user"}
|
2021-11-08 02:57:33 +00:00
|
|
|
flowy-workspace = { path = "../flowy-workspace", default-features = false}
|
2021-09-03 08:43:03 +00:00
|
|
|
flowy-document = { path = "../flowy-document"}
|
2021-11-20 02:52:39 +00:00
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
|
|
|
lib-infra = { path = "../lib-infra" }
|
|
|
|
|
|
|
|
flowy-document-infra = { path = "../../../shared-lib/flowy-document-infra" }
|
|
|
|
backend-service = { path = "../../../shared-lib/backend-service" }
|
|
|
|
|
2021-07-06 06:14:47 +00:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
bincode = { version = "1.3"}
|
|
|
|
protobuf = {version = "2.24.1"}
|
|
|
|
claim = "0.5.0"
|
|
|
|
tokio = { version = "1", features = ["full"]}
|
2021-07-09 06:02:42 +00:00
|
|
|
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"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = "0.9.2"
|
|
|
|
quickcheck_macros = "0.9.1"
|
|
|
|
fake = "~2.3.0"
|
|
|
|
claim = "0.4.0"
|
|
|
|
futures = "0.3.15"
|
|
|
|
serial_test = "0.5.1"
|