Cargo.toml 997 B

12345678910111213141516171819202122232425262728293031323334353637
  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-core = { path = "../flowy-core" }
  8. flowy-user = { path = "../flowy-user"}
  9. flowy-net = { path = "../flowy-net"}
  10. flowy-folder2 = { path = "../flowy-folder2", features = ["test_helper"] }
  11. #flowy-document= { path = "../flowy-document" }
  12. lib-dispatch = { path = "../lib-dispatch" }
  13. lib-ot = { path = "../../../shared-lib/lib-ot" }
  14. lib-infra = { path = "../../../shared-lib/lib-infra" }
  15. serde = { version = "1.0", features = ["derive"] }
  16. serde_json = {version = "1.0"}
  17. protobuf = {version = "2.28.0"}
  18. #claim = "0.5.0"
  19. tokio = { version = "1.26", features = ["full"]}
  20. futures-util = "0.3.26"
  21. thread-id = "3.3.0"
  22. log = "0.4"
  23. bytes = "1.4"
  24. nanoid = "0.4.0"
  25. [dev-dependencies]
  26. quickcheck = "1.0.3"
  27. quickcheck_macros = "0.9.1"
  28. fake = "2.5.0"
  29. futures = "0.3.26"
  30. serial_test = "0.5.1"
  31. [features]
  32. dart = ["flowy-core/dart"]