Cargo.toml 862 B

123456789101112131415161718192021222324252627282930313233
  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"}
  11. flowy-infra = { path = "../flowy-infra"}
  12. flowy-document = { path = "../flowy-document"}
  13. flowy-net = { path = "../flowy-net"}
  14. serde = { version = "1.0", features = ["derive"] }
  15. bincode = { version = "1.3"}
  16. protobuf = {version = "2.24.1"}
  17. claim = "0.5.0"
  18. tokio = { version = "1", features = ["full"]}
  19. futures-util = "0.3.15"
  20. thread-id = "3.3.0"
  21. log = "0.4"
  22. bytes = "1.0"
  23. [dev-dependencies]
  24. quickcheck = "0.9.2"
  25. quickcheck_macros = "0.9.1"
  26. fake = "~2.3.0"
  27. claim = "0.4.0"
  28. futures = "0.3.15"
  29. serial_test = "0.5.1"