[package]
edition = "2024"
rust-version = "1.88.0"
name = "audit-check"
version = "0.2.0"
authors = ["Jason Ozias <jason.g.ozias@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Github Action to run 'cargo audit' on your Rust project"
homepage = "https://github.com/rustyhorde/audit-check"
documentation = "https://docs.rs/audit-check"
readme = "README.md"
keywords = [
"cargo",
"audit",
"github",
"actions",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustyhorde/audit-check"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }-v{ version }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }-v{ version }.zip"
pkg-fmt = "zip"
[features]
unstable = []
[[bin]]
name = "audit-check"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.regex]
version = "1.12.3"
[dependencies.reqwest]
version = "0.13.2"
features = [
"rustls",
"brotli",
"json",
]
default-features = false
[dependencies.rustc_version]
version = "0.4.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.time]
version = "0.3.47"
features = ["formatting"]
[dependencies.tokio]
version = "1.50.0"
features = ["rt-multi-thread"]
[dependencies.tracing]
version = "0.1.44"
features = [
"max_level_trace",
"release_max_level_trace",
]
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["time"]
[build-dependencies.rustversion]
version = "1.0.22"