Cargo.toml 1.0 KB

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-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. lib-dispatch = { path = "../lib-dispatch" }
  12. lib-ot = { path = "../../../shared-lib/lib-ot" }
  13. lib-infra = { path = "../../../shared-lib/lib-infra" }
  14. flowy-server = { path = "../flowy-server" }
  15. flowy-notification = { path = "../flowy-notification" }
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = {version = "1.0"}
  18. protobuf = {version = "2.28.0"}
  19. tokio = { version = "1.26", features = ["full"]}
  20. futures-util = "0.3.26"
  21. thread-id = "3.3.0"
  22. bytes = "1.4"
  23. nanoid = "0.4.0"
  24. tempdir = "0.3.7"
  25. tracing = { version = "0.1.27" }
  26. parking_lot = "0.12.1"
  27. dotenv = "0.15.0"
  28. [dev-dependencies]
  29. uuid = { version = "1.3.3", features = ["v4"] }
  30. [features]
  31. dart = ["flowy-core/dart"]