Cargo.toml 881 B

1234567891011121314151617181920212223242526272829303132333435
  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. flowy-error-code = { path = "../flowy-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.10.0"
  17. lazy_static = "1.4"
  18. [build-dependencies]
  19. lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
  20. [dev-dependencies]
  21. quickcheck = "1.0.3"
  22. quickcheck_macros = "0.9.1"
  23. fake = "2.4.3"
  24. claim = "0.4.0"
  25. futures = "0.3.15"
  26. serial_test = "0.5.1"
  27. rand_core = "0.6.3"
  28. rand = "0.8.5"
  29. [features]
  30. dart = ["lib-infra/dart", "flowy-error-code/dart"]