29 lines
758 B
TOML
29 lines
758 B
TOML
[package]
|
|
name = "dockertags"
|
|
version = "0.1.0"
|
|
authors = ["Yezzi Hsueh <xueye404@gmail.com>"]
|
|
documentation = "https://code.simaek.com/xueye/docker-tags/src/branch/main/README.md"
|
|
edition = "2021"
|
|
exclude = []
|
|
keywords = ["docker"]
|
|
license = "MIT"
|
|
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"
|
|
|
|
[dependencies]
|
|
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"
|
|
base64 = "0.21.7"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|