[package]
name = "nabla-cli"
version = "0.1.2"
edition = "2024"
description = "An OSS SAST/SCA API for calculating your SSCS gradients"
keywords = ["security", "binary-analysis", "cli", "sbom", "vulnerability"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
repository = "https://github.com/Atelier-Logos/nabla"
homepage = "https://nabla.atelierlogos.studio"
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE"
]
[features]
default = ["oss"]
oss = []
cloud = ["webbrowser", "tiny_http", "urlencoding"]
private = ["doppler-rs"]
[dependencies]
axum = { version = "0.7", features = ["multipart", "macros"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "multipart", "blocking"] }
ureq = { version = "2.9", features = ["json"] }
rustls = "0.21"
rustls-pemfile = "1.0"
webpki-roots = "0.25"
hyper-rustls = "0.24"
anyhow = "1.0"
thiserror = "1.0"
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
cargo_metadata = "0.18"
syn = { version = "2.0", features = ["full", "parsing", "visit"] }
walkdir = "2.0"
tempfile = "3.0"
regex = "1.0"
sha2 = "0.10"
blake3 = "1.5"
base64 = "0.21"
hex = "0.4"
hmac = "0.12"
pbkdf2 = { version = "0.12", features = ["simple"] }
hkdf = "0.12"
openssl = "0.10"
goblin = "0.10"
object = "0.34"
wasmparser = "0.121"
infer = "0.16"
pelite = "0.10"
aho-corasick = "1.1"
entropy = "0.4"
proc-macro2 = "1.0"
quote = "1.0"
which = "8.0"
sigstore = { version = "0.12", features = ["cosign", "sign", "verify"] }
home = "0.5"
flate2 = "1.0"
tar = "0.4"
url = "2.4"
once_cell = "1.19"
dashmap = "6.1"
base64ct = "=1.7.3"
ran = "2.0.1"
rand = "0.9"
jsonwebtoken = "9"
ed25519-dalek = "2"
clap = { version = "4", features = ["derive"] }
async-trait = "0.1"
rpassword = "7.3"
tokio-util = "0.7"
fuzzy-matcher = "0.3"
webbrowser = { version = "1.0", optional = true }
tiny_http = { version = "0.12", optional = true }
urlencoding = { version = "2.1", optional = true }
doppler-rs = { version = "0.0.2", optional = true }
[[bin]]
name = "nabla"
path = "src/bin/nabla_shell.rs"
[[bin]]
name = "test-middleware"
path = "src/bin/test_middleware.rs"
[[bin]]
name = "test-deployment-modes"
path = "src/bin/test_deployment_modes.rs"
[dev-dependencies]
hyper = { version = "0.14.12", features = ["full"] }
tokio = { version = "1.0", features = ["full"] }
http-body-util = "0.1"
bytes = "1"
multer = "3"
mockall = "0.12"
wiremock = "0.6"
axum-test = "17"
futures = "0.3"
tempfile = "3.0"