docker-tags/Cargo.toml

29 lines
758 B
TOML
Raw Normal View History

2023-11-10 12:52:22 +00:00
[package]
2024-01-19 11:08:39 +00:00
name = "dockertags"
2023-11-10 12:52:22 +00:00
version = "0.1.0"
2024-01-19 11:45:23 +00:00
authors = ["Yezzi Hsueh <xueye404@gmail.com>"]
documentation = "https://code.simaek.com/xueye/docker-tags/src/branch/main/README.md"
2023-11-10 12:52:22 +00:00
edition = "2021"
2024-01-19 11:45:23 +00:00
exclude = []
keywords = ["docker"]
2023-11-10 12:52:22 +00:00
license = "MIT"
2024-01-19 11:45:23 +00:00
readme = "README.md"
repository = "https://code.simaek.com/xueye/docker-tags"
description = "List all tags for a Docker image on a remote registry"
rust-version = "1.75"
2023-11-10 12:52:22 +00:00
[dependencies]
2024-01-19 11:08:39 +00:00
reqwest = { version = "0.11.23", features = ["blocking"] }
serde_json = "1.0.111"
serde = { version = "1.0.195", features = ["derive"] }
clap = { version = "4.4.16", features = ["derive"] }
directories = "5.0.1"
2024-01-19 11:08:39 +00:00
base64 = "0.21.7"
2023-11-29 15:52:41 +00:00
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true