Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. flowy-net = { path = "../flowy-net" }
  15. tracing = { version = "0.1", features = ["log"] }
  16. bytes = "1.0"
  17. serde = { version = "1.0", features = ["derive"] }
  18. validator = "0.12.0"
  19. rand = { version = "0.8", features=["std_rng"] }
  20. unicode-segmentation = "1.7.1"
  21. log = "0.4.14"
  22. protobuf = {version = "2.18.0"}
  23. lazy_static = "1.4.0"
  24. fancy-regex = "0.5.0"
  25. diesel = {version = "1.4.7", features = ["sqlite"]}
  26. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  27. thread_local = "1.1.3"
  28. thread-id = "3.3.0"
  29. once_cell = "1.7.2"
  30. parking_lot = "0.11"
  31. strum = "0.21"
  32. strum_macros = "0.21"
  33. [dev-dependencies]
  34. quickcheck = "0.9.2"
  35. quickcheck_macros = "0.9.1"
  36. fake = "~2.3.0"
  37. claim = "0.4.0"
  38. flowy-test = { path = "../flowy-test" }
  39. tokio = { version = "1", features = ["full"] }
  40. futures = "0.3.15"
  41. serial_test = "0.5.1"
  42. [features]
  43. http_server = []