[package]
edition = "2021"
rust-version = "1.75"
name = "truestack"
version = "0.1.0"
authors = ["Santh <hello@santh.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security-aware technology fingerprinting — detects what is really running, not what the version string claims"
homepage = "https://github.com/santh-io/truestack"
documentation = "https://docs.rs/truestack"
readme = "README.md"
keywords = [
"security",
"fingerprint",
"wappalyzer",
"techstack",
"web",
]
categories = [
"web-programming",
"network-programming",
]
license = "MIT"
repository = "https://github.com/santh-io/truestack"
[features]
default = ["fetch"]
fetch = ["dep:reqwest"]
[lib]
name = "truestack"
path = "src/lib.rs"
[[bin]]
name = "truestack"
path = "src/main.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.once_cell]
version = "1.19"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
optional = true
default-features = false
[dependencies.scraper]
version = "0.21"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]