Cargo.toml 1.8 KB

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