Cargo.toml 1.1 KB

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