Cargo.toml 947 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "flowy-test"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. flowy-sdk = { path = "../flowy-sdk"}
  8. flowy-dispatch = { path = "../flowy-dispatch"}
  9. flowy-user = { path = "../flowy-user"}
  10. flowy-workspace = { path = "../flowy-workspace", default-features = false}
  11. flowy-infra = { path = "../flowy-infra"}
  12. flowy-document = { path = "../flowy-document"}
  13. flowy-document-infra = { path = "../flowy-document-infra"}
  14. flowy-net = { path = "../flowy-net"}
  15. serde = { version = "1.0", features = ["derive"] }
  16. bincode = { version = "1.3"}
  17. protobuf = {version = "2.24.1"}
  18. claim = "0.5.0"
  19. tokio = { version = "1", features = ["full"]}
  20. futures-util = "0.3.15"
  21. thread-id = "3.3.0"
  22. log = "0.4"
  23. bytes = "1.0"
  24. [dev-dependencies]
  25. quickcheck = "0.9.2"
  26. quickcheck_macros = "0.9.1"
  27. fake = "~2.3.0"
  28. claim = "0.4.0"
  29. futures = "0.3.15"
  30. serial_test = "0.5.1"