[package]
edition = "2021"
rust-version = "1.95"
name = "bcl-secunit"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "secunit binary — agent helper for registry inspection, run orchestration, and capture."
readme = false
keywords = [
"security",
"registry",
"verification",
"cli",
"secunit",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Battle-Creek-LLC/secunit"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/secunit-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "secunit{ binary-ext }"
[features]
aws = ["secunit-capture/aws"]
default = [
"deps",
"github",
"aws",
]
deps = ["secunit-capture/deps"]
github = ["secunit-capture/github"]
http = ["secunit-capture/http"]
[[bin]]
name = "secunit"
path = "src/main.rs"
[[test]]
name = "bootstrap"
path = "tests/bootstrap.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "risks"
path = "tests/risks.rs"
[[test]]
name = "skills"
path = "tests/skills.rs"
[[test]]
name = "wisp"
path = "tests/wisp.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.secunit-capture]
version = "0.6.0"
[dependencies.secunit-core]
version = "0.6.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
features = [
"yaml",
"json",
]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"