[package]
edition = "2024"
rust-version = "1.91.0"
name = "csaf-cli"
version = "0.15.0"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI to work with CSAF data"
readme = "README.md"
keywords = [
"csaf",
"vex",
"cli",
]
categories = [
"command-line-utilities",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/scm-rs/csaf-walker"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/csaf-{ target }{ binary-ext }"
pkg-fmt = "bin"
[package.metadata.cargo-all-features]
always_include_features = ["crypto-nettle"]
denylist = [
"crypto-cng",
"crypto-openssl",
"crypto-botan",
"crypto-rust",
]
[features]
crypto-botan = ["csaf-walker/crypto-botan"]
crypto-cng = ["csaf-walker/crypto-cng"]
crypto-nettle = ["csaf-walker/crypto-nettle"]
crypto-openssl = ["csaf-walker/crypto-openssl"]
crypto-rust = ["csaf-walker/crypto-rust"]
default = ["crypto-nettle"]
vendored = ["openssl/vendored"]
[[bin]]
name = "csaf"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"color",
]
[dependencies.colored_json]
version = "5"
[dependencies.csaf]
version = "0.5.0"
default-features = false
[dependencies.csaf-walker]
version = "0.15.0"
features = ["csaf"]
default-features = false
[dependencies.flexible-time]
version = "0.1.1"
[dependencies.humantime]
version = "2"
[dependencies.jsonpath-rust]
version = "1"
[dependencies.log]
version = "0.4.17"
[dependencies.openssl]
version = "0.10"
optional = true
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.walker-common]
version = "0.15.0"
features = [
"openpgp",
"clap",
"env_logger",
"s3",
]
[dependencies.walker-extras]
version = "0.15.0"