Cargo.toml 626 B

123456789101112131415161718192021222324252627
  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. validator = "0.12.0"
  14. log = "0.4.14"
  15. fancy-regex = "0.5.0"
  16. lazy_static = "1.4"
  17. [dev-dependencies]
  18. quickcheck = "0.9.2"
  19. quickcheck_macros = "0.9.1"
  20. fake = "~2.3.0"
  21. claim = "0.4.0"
  22. futures = "0.3.15"
  23. serial_test = "0.5.1"