Cargo.toml 1.4 KB

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