Cargo.toml 1.8 KB

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