Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. serde_json = {version = "1.0"}
  19. validator = "0.12.0"
  20. rand = { version = "0.8", features=["std_rng"] }
  21. unicode-segmentation = "1.7.1"
  22. log = "0.4.14"
  23. protobuf = {version = "2.18.0"}
  24. lazy_static = "1.4.0"
  25. fancy-regex = "0.5.0"
  26. diesel = {version = "1.4.7", features = ["sqlite"]}
  27. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  28. thread_local = "1.1.3"
  29. thread-id = "3.3.0"
  30. once_cell = "1.7.2"
  31. parking_lot = "0.11"
  32. strum = "0.21"
  33. strum_macros = "0.21"
  34. tokio = { version = "1", features = ["rt"] }
  35. pin-project = "1.0.0"
  36. futures-core = { version = "0.3", default-features = false }
  37. r2d2 = "0.8.9"
  38. [dev-dependencies]
  39. quickcheck = "0.9.2"
  40. quickcheck_macros = "0.9.1"
  41. fake = "~2.3.0"
  42. claim = "0.4.0"
  43. flowy-test = { path = "../flowy-test" }
  44. futures = "0.3.15"
  45. serial_test = "0.5.1"
  46. [features]
  47. http_server = []