Cargo.toml 653 B

12345678910111213141516171819202122232425
  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. bytes = "1.0"
  8. serde = { version = "1.0", features = ["derive", "rc"] }
  9. serde_json = {version = "1.0"}
  10. serde_repr = "0.1"
  11. nanoid = "0.4.0"
  12. flowy-error-code = { path = "../flowy-error-code"}
  13. indexmap = {version = "1.9.1", features = ["serde"]}
  14. tracing = { version = "0.1", features = ["log"] }
  15. [build-dependencies]
  16. lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
  17. [features]
  18. default = []
  19. backend = []
  20. frontend = []
  21. dart = ["lib-infra/dart"]