Cargo.toml 817 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "flowy-user-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. error-code = { path = "../error-code" }
  9. protobuf = {version = "2.18.0"}
  10. bytes = "1.0"
  11. unicode-segmentation = "1.8"
  12. derive_more = {version = "0.99", features = ["display"]}
  13. serde = { version = "1.0", features = ["derive"] }
  14. validator = "0.12.0"
  15. log = "0.4.14"
  16. fancy-regex = "0.5.0"
  17. lazy_static = "1.4"
  18. [build-dependencies]
  19. lib-infra = { path = "../lib-infra", features = ["pb_gen"] }
  20. [dev-dependencies]
  21. quickcheck = "0.9.2"
  22. quickcheck_macros = "0.9.1"
  23. fake = "~2.3.0"
  24. claim = "0.4.0"
  25. futures = "0.3.15"
  26. serial_test = "0.5.1"
  27. [features]
  28. dart = ["lib-infra/dart", "error-code/dart"]