pathbuster 0.3.2

A path-normalization pentesting tool.
[package]
name = "pathbuster"
authors = ["zoid", "<krypt0mux@gmail.com>"]
description = "A path-normalization pentesting tool."
version = "0.3.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/ethicalhackingplayground/pathbuster"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
governor = "0.5.1"
futures = "0.3.26"
futures-util = "0.3.26"
tokio = { version = "^1.2.0", features = ["full"] }
colored = { version = "2.0.0" }
indicatif = "0.17.3"
spmc = "0.3.0"
clap =  { version = "^3.0.0-beta.2" }
reqwest = { version = "0.11.14", features = ["native-tls", "blocking"] }
rainbowcoat = "0.1.0"
regex = "1.7.3"

[dependencies.uuid]
version = "1.3.0"
features = [
    "v4",                # Lets you generate random UUIDs
    "fast-rng",          # Use a faster (but still sufficiently random) RNG
    "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]