Cargo.toml 466 B

1234567891011121314151617
  1. [package]
  2. name = "lib-infra"
  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. chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
  8. bytes = { version = "1.5" }
  9. pin-project = "1.1.3"
  10. futures-core = { version = "0.3" }
  11. tokio = { version = "1.26", features = ["time", "rt"] }
  12. rand = "0.8.5"
  13. async-trait = "0.1.64"
  14. md5 = "0.7.0"
  15. anyhow = "1.0"