Cargo.toml 792 B

123456789101112131415161718192021222324252627282930
  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. uuid = { version = "0.8", features = ["serde", "v4"] }
  16. chrono = { version = "0.4" }
  17. error-code = { path = "../error-code"}
  18. serde = { version = "1.0", features = ["derive"] }
  19. serde_json = "1.0"
  20. [build-dependencies]
  21. lib-infra = { path = "../lib-infra", features = ["pb_gen"] }
  22. [features]
  23. default = []
  24. backend = []
  25. frontend = []
  26. dart = ["lib-infra/dart", "error-code/dart"]