Cargo.toml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [package]
  2. name = "flowy-grid"
  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. lib-dispatch = { path = "../lib-dispatch" }
  8. flowy-notification = { path = "../flowy-notification" }
  9. flowy-revision = { path = "../flowy-revision" }
  10. flowy-revision-persistence = { path = "../flowy-revision-persistence" }
  11. flowy-task= { path = "../flowy-task" }
  12. flowy-error = { path = "../flowy-error", features = ["db"]}
  13. flowy-derive = { path = "../flowy-derive" }
  14. lib-ot = { path = "../../../shared-lib/lib-ot" }
  15. lib-infra = { path = "../../../shared-lib/lib-infra" }
  16. grid-rev-model = { path = "../../../shared-lib/grid-rev-model" }
  17. flowy-sync = { path = "../flowy-sync"}
  18. flowy-http-model = { path = "../../../shared-lib/flowy-http-model" }
  19. flowy-database = { path = "../flowy-database", optional = true }
  20. anyhow = "1.0"
  21. strum = "0.21"
  22. strum_macros = "0.21"
  23. tracing = { version = "0.1", features = ["log"] }
  24. protobuf = {version = "2.18.0"}
  25. rust_decimal = "1.8.1"
  26. rusty-money = {version = "0.4.0", features = ["iso"]}
  27. lazy_static = "1.4.0"
  28. chrono = "0.4.19"
  29. nanoid = "0.4.0"
  30. bytes = { version = "1.0" }
  31. diesel = {version = "1.4.8", features = ["sqlite"]}
  32. dashmap = "5"
  33. tokio = {version = "1", features = ["sync"]}
  34. rayon = "1.5.2"
  35. serde = { version = "1.0", features = ["derive"] }
  36. serde_json = {version = "1.0"}
  37. serde_repr = "0.1"
  38. indexmap = {version = "1.9.1", features = ["serde"]}
  39. fancy-regex = "0.10.0"
  40. regex = "1.5.6"
  41. url = { version = "2"}
  42. futures = "0.3.15"
  43. atomic_refcell = "0.1.8"
  44. crossbeam-utils = "0.8.7"
  45. async-stream = "0.3.2"
  46. parking_lot = "0.12.1"
  47. [dev-dependencies]
  48. flowy-test = { path = "../flowy-test" }
  49. flowy-grid = { path = "../flowy-grid", features = ["flowy_unit_test"]}
  50. [build-dependencies]
  51. flowy-codegen = { path = "../flowy-codegen"}
  52. [features]
  53. default = []
  54. rev-sqlite = ["flowy-database"]
  55. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  56. ts = ["flowy-codegen/ts", "flowy-notification/ts"]
  57. flowy_unit_test = ["flowy-revision/flowy_unit_test"]