Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-user-deps = { path = "../flowy-user-deps"}
  10. flowy-net = { path = "../flowy-net"}
  11. flowy-folder2 = { path = "../flowy-folder2", features = ["test_helper"] }
  12. flowy-database2 = { path = "../flowy-database2" }
  13. flowy-document2 = { path = "../flowy-document2" }
  14. lib-dispatch = { path = "../lib-dispatch" }
  15. lib-infra = { path = "../../../shared-lib/lib-infra" }
  16. flowy-server = { path = "../flowy-server" }
  17. flowy-server-config = { path = "../flowy-server-config" }
  18. flowy-notification = { path = "../flowy-notification" }
  19. anyhow = "1.0.71"
  20. serde = { version = "1.0", features = ["derive"] }
  21. serde_json = {version = "1.0"}
  22. protobuf = {version = "2.28.0"}
  23. tokio = { version = "1.26", features = ["full"]}
  24. futures-util = "0.3.26"
  25. thread-id = "3.3.0"
  26. bytes = "1.4"
  27. nanoid = "0.4.0"
  28. tracing = { version = "0.1.27" }
  29. parking_lot = "0.12.1"
  30. uuid = { version = "1.3.3", features = ["serde", "v4"] }
  31. [dev-dependencies]
  32. dotenv = "0.15.0"
  33. tempdir = "0.3.7"
  34. uuid = { version = "1.3.3", features = ["v4"] }
  35. collab = { version = "0.1.0" }
  36. collab-document = { version = "0.1.0" }
  37. collab-folder = { version = "0.1.0" }
  38. collab-database = { version = "0.1.0" }
  39. collab-plugins = { version = "0.1.0" }
  40. assert-json-diff = "2.0.2"
  41. tokio-postgres = { version = "0.7.8" }
  42. zip = "0.6.6"
  43. [features]
  44. default = ["cloud_test"]
  45. dart = ["flowy-core/dart"]
  46. cloud_test = []