Cargo.toml 808 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "flowy-folder-data-model"
  3. version = "0.1.0"
  4. edition = "2018"
  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. unicode-segmentation = "1.8"
  11. strum = "0.21"
  12. strum_macros = "0.21"
  13. derive_more = {version = "0.99", features = ["display"]}
  14. log = "0.4.14"
  15. nanoid = "0.4.0"
  16. chrono = { version = "0.4" }
  17. flowy-error-code = { path = "../flowy-error-code"}
  18. serde = { version = "1.0", features = ["derive", "rc"] }
  19. serde_json = "1.0"
  20. serde_repr = "0.1"
  21. [build-dependencies]
  22. lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
  23. [features]
  24. default = []
  25. backend = []
  26. frontend = []
  27. dart = ["lib-infra/dart", "flowy-error-code/dart"]