rustwall 0.1.1

Advanced Rust-based firewall and security system with DDoS protection, CAPTCHA verification, and specialized Tor network security features
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rustwall"
version = "0.1.1"
authors = ["austin@songer.me"]
build = false
exclude = [
    "/.github/",
    "/docs/",
    "/examples/",
    "/.gitignore",
    "/TODO.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Advanced Rust-based firewall and security system with DDoS protection, CAPTCHA verification, and specialized Tor network security features"
homepage = "https://github.com/Elevated-Standards/RustWall"
documentation = "https://docs.rs/rustwall"
readme = "README.md"
keywords = [
    "security",
    "ddos",
    "captcha",
    "privacy",
    "anonymity",
]
categories = [
    "network-programming",
    "web-programming",
    "cryptography",
    "authentication",
]
license = "MIT"
repository = "https://github.com/Elevated-Standards/RustWall"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
anonymity = ["sha2"]
captcha = []
content-security = ["image"]
ddos-advanced = ["image"]
ddos-basic = []
default = ["captcha"]
full = [
    "captcha",
    "ddos-advanced",
    "tor-security",
    "anonymity",
    "content-security",
    "network-advanced",
    "operational",
]
network-advanced = [
    "reqwest",
    "sha2",
]
operational = [
    "config",
    "toml",
]
tor-security = [
    "sha2",
    "aes",
]

[lib]
name = "rustwall"
path = "src/lib.rs"

[[bin]]
name = "rustwall-captcha"
path = "src/captcha/main.rs"

[dependencies.aes]
version = "0.8"
optional = true

[dependencies.axum]
version = "0.7"
features = ["macros"]

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.config]
version = "0.14"
optional = true

[dependencies.dashmap]
version = "5.5"

[dependencies.env_logger]
version = "0.10"

[dependencies.image]
version = "0.24"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
version = "0.11"
features = ["json"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.svg]
version = "0.17"

[dependencies.tera]
version = "1.19"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.toml]
version = "0.8"
optional = true

[dependencies.tower]
version = "0.4"
features = ["util"]

[dependencies.tower-http]
version = "0.5"
features = [
    "fs",
    "cors",
    "trace",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "serde",
]

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.tokio-test]
version = "0.4"