Cargo.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "event-integration"
  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 = { workspace = true }
  8. flowy-user = { workspace = true }
  9. flowy-user-deps = { workspace = true }
  10. flowy-folder2 = { path = "../flowy-folder2", features = ["test_helper"] }
  11. flowy-folder-deps = { workspace = true }
  12. flowy-database2 = { path = "../flowy-database2" }
  13. flowy-database-deps = { workspace = true }
  14. flowy-document2 = { path = "../flowy-document2" }
  15. flowy-document-deps = { workspace = true }
  16. flowy-encrypt = { workspace = true }
  17. lib-dispatch = { workspace = true }
  18. lib-infra = { path = "../../../shared-lib/lib-infra" }
  19. flowy-server = { path = "../flowy-server" }
  20. flowy-server-config = { workspace = true }
  21. flowy-notification = { workspace = true }
  22. anyhow = "1.0.71"
  23. flowy-storage = { workspace = true }
  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. 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. collab-entity = { version = "0.1.0" }
  41. [dev-dependencies]
  42. dotenv = "0.15.0"
  43. tempdir = "0.3.7"
  44. uuid = { version = "1.3.3", features = ["v4"] }
  45. assert-json-diff = "2.0.2"
  46. tokio-postgres = { version = "0.7.8" }
  47. zip = "0.6.6"
  48. [features]
  49. default = ["supabase_cloud_test"]
  50. dart = ["flowy-core/dart"]
  51. supabase_cloud_test = []