2020-08-28 15:58:29 -05:00
|
|
|
[package]
|
|
|
|
|
name = "feroxbuster"
|
2020-10-03 08:00:45 -05:00
|
|
|
version = "0.2.0"
|
2020-10-01 17:28:44 -05:00
|
|
|
authors = ["Ben 'epi' Risher <epibar052@gmail.com>"]
|
2020-10-02 06:48:33 -05:00
|
|
|
license = "MIT"
|
2020-08-28 15:58:29 -05:00
|
|
|
edition = "2018"
|
2020-10-02 06:48:33 -05:00
|
|
|
homepage = "https://github.com/epi052/feroxbuster"
|
|
|
|
|
repository = "https://github.com/epi052/feroxbuster"
|
|
|
|
|
description = "A fast, simple, recursive content discovery tool."
|
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
keywords = ["pentest", "enumeration", "url-bruteforce", "content-discovery", "web"]
|
2020-10-02 07:14:30 -05:00
|
|
|
exclude = [".github/*", "img/*", "check-coverage.sh"]
|
2020-08-28 15:58:29 -05:00
|
|
|
|
2020-10-02 07:07:42 -05:00
|
|
|
[badges]
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
2020-08-28 15:58:29 -05:00
|
|
|
[dependencies]
|
|
|
|
|
futures = { version = "0.3"}
|
2020-08-29 20:38:05 -05:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2020-09-19 14:11:08 -05:00
|
|
|
tokio-util = {version = "0.3", features = ["codec"]}
|
2020-08-28 15:58:29 -05:00
|
|
|
log = "0.4"
|
|
|
|
|
env_logger = "0.7"
|
2020-08-29 20:38:05 -05:00
|
|
|
reqwest = { version = "0.10", features = ["socks"] }
|
2020-09-03 09:05:35 -05:00
|
|
|
clap = "2"
|
2020-08-28 15:58:29 -05:00
|
|
|
lazy_static = "1.4"
|
2020-08-28 21:25:02 -05:00
|
|
|
toml = "0.5"
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-09-18 17:24:37 -05:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
|
ansi_term = "0.12"
|
2020-09-23 06:27:21 -05:00
|
|
|
indicatif = "0.15"
|
2020-09-29 06:39:14 -05:00
|
|
|
console = "0.12"
|
2020-10-01 07:28:55 -05:00
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
2020-10-03 08:00:01 -05:00
|
|
|
dirs = "3.0"
|
2020-08-28 21:25:02 -05:00
|
|
|
|
2020-09-01 07:29:51 -05:00
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3.1"
|
2020-09-19 08:36:22 -05:00
|
|
|
httpmock = "0.4.5"
|
|
|
|
|
assert_cmd = "1.0.1"
|
|
|
|
|
predicates = "1.0.5"
|
2020-09-01 07:29:51 -05:00
|
|
|
|
2020-08-28 21:25:02 -05:00
|
|
|
[profile.release]
|
|
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
panic = 'abort'
|
2020-10-02 06:48:33 -05:00
|
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
|
section = "utility"
|
|
|
|
|
license-file = ["LICENSE", "4"]
|
2020-10-03 08:00:01 -05:00
|
|
|
conf-files = ["~/.config/feroxbuster/ferox-config.toml"]
|