Cargo.toml 1.7 KB

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