Files
dredge/Cargo.toml
dependabot[bot] 905c97e604 Update reqwest requirement from 0.12 to 0.13
Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version.
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.13.3)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-version: 0.13.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-13 18:52:56 +00:00

44 lines
1.1 KiB
TOML

[package]
name = "dredge-tool"
version = "1.2.0"
edition = "2021"
authors = ["Anthony Oteri"]
description = "A command line tool for interacting with the Docker Registry API"
readme = "README.md"
repository = "https://github.com/anthonyoteri/dredge"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
keywords = [
"docker",
"registry",
"cli",
]
categories = [
"command-line-utilities",
"api-bindings",
]
[[bin]]
path = "src/main.rs"
name = "dredge"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.6", features = ["derive", "env", "wrap_help"] }
simple_logger = { version = "5.2", features = ["timestamps", "colors", "stderr"] }
http = "1.4"
indoc = "2.0"
log = "0.4"
reqwest = { version = "0.13", features = ["json", "gzip", "multipart", "native-tls-vendored"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
url = { version = "2.5", features = ["serde"] }
tokio = { version = "1.52", features = ["macros"] }
serde_norway = "0.9.42"
[dev-dependencies]
mockito = "1.7"
env_logger = "0.11"