mirror of
https://github.com/anthonyoteri/dredge.git
synced 2026-06-05 15:26:53 -04:00
0d9761178c
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.11.20...v0.12.3) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "dredge-tool"
|
|
version = "1.1.0"
|
|
edition = "2021"
|
|
authors = ["Anthony Oteri"]
|
|
description = "A Command Line tool for interracting with the Docker Registry API"
|
|
readme = "README.md"
|
|
repository = "https://github.com/anthonyoteri/dredge"
|
|
rust-version = "1.72"
|
|
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.4.3", features = ["derive", "env", "wrap_help"] }
|
|
simple_logger = { version = "4.2.0", features = ["timestamps", "colors", "stderr"] }
|
|
http = "1.0.0"
|
|
indoc = "2.0.4"
|
|
log = "0.4.20"
|
|
reqwest = { version = "0.12.3", features = ["json", "gzip", "multipart", "native-tls-vendored"] }
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_toml = "0.0.1"
|
|
serde_yaml = "0.9.25"
|
|
thiserror = "1.0.48"
|
|
toml = "0.8.0"
|
|
url = { version = "2.4.1", features = ["serde"] }
|
|
xdg = "2.5.2"
|
|
tokio = { version = "1.32.0", features = ["macros"] }
|
|
|
|
[dev-dependencies]
|
|
mockito = "1.2.0"
|
|
env_logger = "0.10.0"
|