Cargo.toml 991 B

123456789101112131415161718192021222324252627282930313233343536
  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-user = { path = "../flowy-user"}
  9. flowy-workspace = { path = "../flowy-workspace", default-features = false}
  10. flowy-document = { path = "../flowy-document"}
  11. lib-dispatch = { path = "../lib-dispatch" }
  12. lib-infra = { path = "../lib-infra" }
  13. flowy-document-infra = { path = "../../../shared-lib/flowy-document-infra" }
  14. backend-service = { path = "../../../shared-lib/backend-service" }
  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"