Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "flowy-database2"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. collab = { version = "0.1.0" }
  8. collab-database = { version = "0.1.0" }
  9. collab-entity = { version = "0.1.0" }
  10. collab-integrate = { workspace = true }
  11. flowy-database-deps = { workspace = true }
  12. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  13. flowy-notification = { workspace = true }
  14. parking_lot = "0.12.1"
  15. protobuf = {version = "2.28.0"}
  16. flowy-error = { workspace = true, features = ["impl_from_dispatch_error", "impl_from_collab"]}
  17. lib-dispatch = { workspace = true }
  18. tokio = { version = "1.26", features = ["sync"] }
  19. flowy-task= { workspace = true }
  20. bytes = { version = "1.5" }
  21. tracing = { version = "0.1", features = ["log"] }
  22. serde = { version = "1.0", features = ["derive"] }
  23. serde_json = {version = "1.0"}
  24. serde_repr = "0.1"
  25. lib-infra = { path = "../../../shared-lib/lib-infra" }
  26. chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
  27. rust_decimal = "1.28.1"
  28. rusty-money = {version = "0.4.1", features = ["iso"]}
  29. lazy_static = "1.4.0"
  30. indexmap = {version = "1.9.2", features = ["serde"]}
  31. url = { version = "2"}
  32. fancy-regex = "0.11.0"
  33. futures = "0.3.26"
  34. dashmap = "5"
  35. anyhow = "1.0"
  36. async-stream = "0.3.4"
  37. rayon = "1.6.1"
  38. nanoid = "0.4.0"
  39. async-trait = "0.1.73"
  40. chrono-tz = "0.8.2"
  41. csv = "1.1.6"
  42. strum = "0.25"
  43. strum_macros = "0.25"
  44. [dev-dependencies]
  45. event-integration = { path = "../event-integration", default-features = false }
  46. [build-dependencies]
  47. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  48. [features]
  49. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  50. ts = ["flowy-codegen/ts", "flowy-notification/ts"]