Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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-net = { path = "../flowy-net"}
  10. flowy-core = { path = "../flowy-core", default-features = false}
  11. flowy-document = { path = "../flowy-document", features = ["flowy_unit_test"]}
  12. lib-dispatch = { path = "../lib-dispatch" }
  13. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
  14. backend-service = { path = "../../../shared-lib/backend-service" }
  15. lib-ot = { path = "../../../shared-lib/lib-ot" }
  16. lib-infra = { path = "../../../shared-lib/lib-infra" }
  17. serde = { version = "1.0", features = ["derive"] }
  18. serde_json = {version = "1.0"}
  19. bincode = { version = "1.3"}
  20. protobuf = {version = "2.24.1"}
  21. claim = "0.5.0"
  22. tokio = { version = "1", features = ["full"]}
  23. futures-util = "0.3.15"
  24. thread-id = "3.3.0"
  25. log = "0.4"
  26. bytes = "1.0"
  27. [dev-dependencies]
  28. quickcheck = "0.9.2"
  29. quickcheck_macros = "0.9.1"
  30. fake = "~2.3.0"
  31. claim = "0.4.0"
  32. futures = "0.3.15"
  33. serial_test = "0.5.1"
  34. flowy-net = { path = "../flowy-net", features = ["flowy_unit_test"] }