Cargo.toml 753 B

12345678910111213141516171819202122232425
  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. flowy-grid-data-model = { path = "../../../shared-lib/flowy-grid-data-model" }
  8. lib-dispatch = { path = "../lib-dispatch" }
  9. lib-infra = { path = "../../../shared-lib/lib-infra" }
  10. flowy-error = { path = "../flowy-error"}
  11. strum = "0.21"
  12. strum_macros = "0.21"
  13. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  14. tracing = { version = "0.1", features = ["log"] }
  15. protobuf = {version = "2.18.0"}
  16. [build-dependencies]
  17. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen", "proto_gen"] }
  18. [features]
  19. default = []
  20. dart = ["lib-infra/dart"]