[package]
edition = "2021"
rust-version = "1.85"
name = "wimsey-cli"
version = "0.4.0"
authors = ["The wimsey authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The wimsey command-line tool: issue, verify and inspect WIMSE credentials."
homepage = "https://github.com/kanywst/wimsey"
readme = "README.md"
keywords = [
"wimse",
"workload-identity",
"spiffe",
"wit",
"jose",
]
categories = [
"authentication",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/kanywst/wimsey"
[[bin]]
name = "wimsey"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.base64]
version = "0.23"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "3"
[dependencies.getrandom]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.wimsey-httpsig]
version = "0.4.0"
[dependencies.wimsey-identifier]
version = "0.4.0"
[dependencies.wimsey-jose]
version = "0.4.0"
[dependencies.wimsey-wit]
version = "0.4.0"
[dependencies.wimsey-wpt]
version = "0.4.0"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"