Cargo.toml 916 B

123456789101112131415161718192021222324252627282930313233
  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-dispatch = { path = "../flowy-dispatch" }
  9. flowy-log = { path = "../flowy-log" }
  10. flowy-derive = { path = "../flowy-derive" }
  11. flowy-db = { path = "../flowy-db" }
  12. tracing = { version = "0.1", features = ["log"] }
  13. bytes = "1.0"
  14. serde = { version = "1.0", features = ["derive"] }
  15. validator = "0.12.0"
  16. rand = { version = "0.8", features=["std_rng"] }
  17. unicode-segmentation = "1.7.1"
  18. log = "0.4.14"
  19. protobuf = {version = "2.18.0"}
  20. lazy_static = "1.4.0"
  21. fancy-regex = "0.5.0"
  22. [dev-dependencies]
  23. quickcheck = "0.9.2"
  24. quickcheck_macros = "0.9.1"
  25. fake = "~2.3.0"
  26. claim = "0.4.0"
  27. flowy-test = { path = "../flowy-test" }
  28. tokio = { version = "1", features = ["full"] }
  29. futures = "0.3.15"