123456789101112131415161718192021222324252627282930313233 |
- [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"}
- flowy-dispatch = { path = "../flowy-dispatch"}
- flowy-user = { path = "../flowy-user"}
- flowy-workspace = { path = "../flowy-workspace"}
- flowy-infra = { path = "../flowy-infra"}
- flowy-document = { path = "../flowy-document"}
- flowy-net = { path = "../flowy-net"}
- serde = { version = "1.0", features = ["derive"] }
- 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"
- log = "0.4"
- 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"
|