Cargo.toml 719 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "flowy-user"
  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. derive_more = {version = "0.99", features = ["display"]}
  8. flowy-sys = { path = "../flowy-sys" }
  9. flowy-log = { path = "../flowy-log" }
  10. flowy-derive = { path = "../flowy-derive" }
  11. tracing = { version = "0.1", features = ["log"] }
  12. bytes = "1.0"
  13. serde = { version = "1.0", features = ["derive"] }
  14. validator = "0.12.0"
  15. rand = { version = "0.8", features=["std_rng"] }
  16. unicode-segmentation = "1.7.1"
  17. log = "0.4.14"
  18. protobuf = {version = "2.18.0"}
  19. [dev-dependencies]
  20. quickcheck = "0.9.2"
  21. quickcheck_macros = "0.9.1"
  22. fake = "~2.3.0"
  23. claim = "0.4.0"