Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. appflowy-integrate = {version = "0.1.0" }
  10. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  11. flowy-notification = { path = "../flowy-notification" }
  12. parking_lot = "0.12.1"
  13. protobuf = {version = "2.28.0"}
  14. flowy-error = { path = "../flowy-error", features = ["adaptor_dispatch", "collab"]}
  15. lib-dispatch = { path = "../lib-dispatch" }
  16. tokio = { version = "1.26", features = ["sync"] }
  17. flowy-task= { path = "../flowy-task" }
  18. bytes = { version = "1.4" }
  19. tracing = { version = "0.1", features = ["log"] }
  20. serde = { version = "1.0", features = ["derive"] }
  21. serde_json = {version = "1.0"}
  22. serde_repr = "0.1"
  23. lib-infra = { path = "../../../shared-lib/lib-infra" }
  24. chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
  25. rust_decimal = "1.28.1"
  26. rusty-money = {version = "0.4.1", features = ["iso"]}
  27. lazy_static = "1.4.0"
  28. indexmap = {version = "1.9.2", features = ["serde"]}
  29. url = { version = "2"}
  30. fancy-regex = "0.10.0"
  31. futures = "0.3.26"
  32. dashmap = "5"
  33. anyhow = "1.0"
  34. async-stream = "0.3.4"
  35. rayon = "1.6.1"
  36. nanoid = "0.4.0"
  37. chrono-tz = "0.8.1"
  38. async-trait = "0.1"
  39. strum = "0.21"
  40. strum_macros = "0.21"
  41. [dev-dependencies]
  42. flowy-test = { path = "../flowy-test" }
  43. [build-dependencies]
  44. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  45. [features]
  46. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  47. ts = ["flowy-codegen/ts", "flowy-notification/ts"]