[package]
edition = "2024"
rust-version = "1.85"
name = "secret_scraper"
version = "0.1.3"
build = false
include = [
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE",
"/README.md",
"/src/**",
"/examples/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A URL Crawler tool and library for crawling web targets, discovering links, and detecting secrets with configurable regex rules."
homepage = "https://github.com/PadishahIII/secret-scraper-in-rust"
documentation = "https://docs.rs/secret_scraper"
readme = "README.md"
keywords = [
"security",
"crawler",
"secrets",
"scanner",
"cli",
]
categories = [
"command-line-utilities",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/PadishahIII/secret-scraper-in-rust"
[features]
dev_tests = []
[lib]
name = "secret_scraper"
path = "src/lib.rs"
[[bin]]
name = "secret_scraper"
path = "src/main.rs"
[[example]]
name = "crawler"
path = "examples/crawler.rs"
[[example]]
name = "logging"
path = "examples/logging.rs"
[[example]]
name = "scan_facade"
path = "examples/scan_facade.rs"
[[test]]
name = "binary_tests"
path = "tests/binary_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "crawler_facade_tests"
path = "tests/crawler_facade_tests.rs"
[[test]]
name = "file_scanner_facade_tests"
path = "tests/file_scanner_facade_tests.rs"
[[test]]
name = "output_tests"
path = "tests/output_tests.rs"
[[test]]
name = "urlparser_test"
path = "tests/urlparser_test.rs"
[dependencies.actix]
version = "0.13.5"
[dependencies.addr]
version = "0.15.6"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.csv]
version = "1.4.0"
[dependencies.derive_builder]
version = "0.20.2"
[dependencies.globset]
version = "0.4.18"
[dependencies.globwalk]
version = "0.9.1"
[dependencies.ignore]
version = "0.4.25"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.owo-colors]
version = "4.3.0"
[dependencies.pub-fields]
version = "0.1.1"
[dependencies.rayon]
version = "1.12.0"
[dependencies.regex]
version = "1.12.3"
[dependencies.reqwest]
version = "0.13.3"
features = [
"form",
"gzip",
"json",
"socks",
]
[dependencies.scraper]
version = "0.26.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.tokio]
version = "1.52.1"
features = [
"fs",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7.18"
features = ["rt"]
default-features = false
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-appender]
version = "0.2.5"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"json",
]
[dependencies.url]
version = "2.5.8"
[dependencies.urlencoding]
version = "2.1.3"
[dependencies.urlparse]
version = "0.7.3"