Cargo.toml 709 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "flowy-grid-data-model"
  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-derive = { path = "../flowy-derive" }
  8. protobuf = {version = "2.18.0"}
  9. bytes = "1.0"
  10. strum = "0.21"
  11. strum_macros = "0.21"
  12. serde = { version = "1.0", features = ["derive"] }
  13. serde_json = {version = "1.0"}
  14. serde_repr = "0.1"
  15. nanoid = "0.4.0"
  16. flowy-error-code = { path = "../flowy-error-code"}
  17. indexmap = {version = "1.8.1", features = ["serde"]}
  18. [build-dependencies]
  19. lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
  20. [features]
  21. default = []
  22. backend = []
  23. frontend = []
  24. dart = ["lib-infra/dart"]