Cargo.toml 825 B

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