[package]
name = "rustwall"
version = "0.1.1"
edition = "2024"
authors = ["austin@songer.me"]
description = "Advanced Rust-based firewall and security system with DDoS protection, CAPTCHA verification, and specialized Tor network security features"
documentation = "https://docs.rs/rustwall"
homepage = "https://github.com/Elevated-Standards/RustWall"
repository = "https://github.com/Elevated-Standards/RustWall"
license = "MIT"
readme = "README.md"
keywords = ["security", "ddos", "captcha", "privacy", "anonymity"]
categories = ["network-programming", "web-programming", "cryptography", "authentication"]
exclude = [
"/.github/",
"/docs/",
"/examples/",
"/.gitignore",
"/TODO.md"
]
[lib]
name = "rustwall"
path = "src/lib.rs"
[[bin]]
name = "rustwall-captcha"
path = "src/captcha/main.rs"
[dependencies]
axum = { version = "0.7", features = ["macros"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["fs", "cors", "trace"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "5.5"
svg = "0.17"
image = { version = "0.24", optional = true }
tera = "1.19"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
log = "0.4"
env_logger = "0.10"
config = { version = "0.14", optional = true }
toml = { version = "0.8", optional = true }
sha2 = { version = "0.10", optional = true }
aes = { version = "0.8", optional = true }
reqwest = { version = "0.11", optional = true, features = ["json"] }
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.8"
[features]
default = ["captcha"]
captcha = []
ddos-basic = []
ddos-advanced = ["image"]
tor-security = ["sha2", "aes"]
anonymity = ["sha2"]
content-security = ["image"]
network-advanced = ["reqwest", "sha2"]
operational = ["config", "toml"]
full = [
"captcha",
"ddos-advanced",
"tor-security",
"anonymity",
"content-security",
"network-advanced",
"operational"
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]