Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. uuid = { version = "0.8", features = ["serde", "v4"] }
  26. bytes = { version = "1.0" }
  27. diesel = {version = "1.4.8", features = ["sqlite"]}
  28. dashmap = "4.0"
  29. tokio = {version = "1", features = ["sync"]}
  30. rayon = "1.5"
  31. serde = { version = "1.0", features = ["derive"] }
  32. serde_json = {version = "1.0"}
  33. serde_repr = "0.1"
  34. [dev-dependencies]
  35. flowy-test = { path = "../flowy-test" }
  36. flowy-grid = { path = "../flowy-grid", features = ["flowy_unit_test"]}
  37. [build-dependencies]
  38. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen", "proto_gen"] }
  39. [features]
  40. default = []
  41. dart = ["lib-infra/dart"]
  42. flowy_unit_test = ["flowy-revision/flowy_unit_test"]