Cargo.toml 1.5 KB

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