mirror of
https://github.com/epi052/feroxbuster.git
synced 2026-06-04 07:21:12 -03:00
Compare commits
1 Commits
copilot/su
...
overdue-up
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40f3511723 |
1281
Cargo.lock
generated
1281
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
20
Cargo.toml
20
Cargo.toml
@@ -22,36 +22,36 @@ build = "build.rs"
|
|||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
clap = { version = "4.3", features = ["wrap_help", "cargo"] }
|
clap = { version = "4.4", features = ["wrap_help", "cargo"] }
|
||||||
clap_complete = "4.3"
|
clap_complete = "4.4"
|
||||||
regex = "1.9"
|
regex = "1.10"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
dirs = "5.0"
|
dirs = "5.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
scraper = "0.18"
|
scraper = "0.18"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tokio = { version = "1.29", features = ["full"] }
|
tokio = { version = "1.35", features = ["full"] }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
env_logger = "0.10"
|
env_logger = "0.10"
|
||||||
reqwest = { version = "0.11", features = ["socks", "native-tls-alpn"] }
|
reqwest = { version = "0.11", features = ["socks", "native-tls-alpn"] }
|
||||||
# uses feature unification to add 'serde' to reqwest::Url
|
# uses feature unification to add 'serde' to reqwest::Url
|
||||||
url = { version = "2.4", features = ["serde"] }
|
url = { version = "2.5", features = ["serde"] }
|
||||||
serde_regex = "1.1"
|
serde_regex = "1.1"
|
||||||
clap = { version = "4.3", features = ["wrap_help", "cargo"] }
|
clap = { version = "4.4", features = ["wrap_help", "cargo"] }
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
uuid = { version = "1.4", features = ["v4"] }
|
uuid = { version = "1.6", features = ["v4"] }
|
||||||
# last known working version of indicatif; 0.17.5 has a bug that causes the
|
# last known working version of indicatif; 0.17.5 has a bug that causes the
|
||||||
# scan menu to fail spectacularly
|
# scan menu to fail spectacularly
|
||||||
indicatif = { version = "0.17.3" }
|
indicatif = { version = "0.17.3" }
|
||||||
console = "0.15"
|
console = "0.15"
|
||||||
openssl = { version = "0.10", features = ["vendored"] }
|
openssl = { version = "0.10", features = ["vendored"] }
|
||||||
dirs = "5.0"
|
dirs = "5.0"
|
||||||
regex = "1.9"
|
regex = "1.10"
|
||||||
crossterm = "0.27"
|
crossterm = "0.27"
|
||||||
rlimit = "0.10"
|
rlimit = "0.10"
|
||||||
ctrlc = "3.4"
|
ctrlc = "3.4"
|
||||||
@@ -69,10 +69,10 @@ self_update = { version = "0.36", features = [
|
|||||||
] }
|
] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.6"
|
tempfile = "3.9"
|
||||||
httpmock = "0.6"
|
httpmock = "0.6"
|
||||||
assert_cmd = "2.0"
|
assert_cmd = "2.0"
|
||||||
predicates = "3.0"
|
predicates = "3.1"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ rm ferox-*.state
|
|||||||
# dependency management
|
# dependency management
|
||||||
[tasks.upgrade-deps]
|
[tasks.upgrade-deps]
|
||||||
command = "cargo"
|
command = "cargo"
|
||||||
args = ["upgrade", "--to-lockfile", "--exclude", "indicatif", "self_update"]
|
args = ["upgrade", "--exclude", "indicatif", "--exclude", "self_update"]
|
||||||
|
|
||||||
[tasks.update]
|
[tasks.update]
|
||||||
command = "cargo"
|
command = "cargo"
|
||||||
|
|||||||
@@ -271,4 +271,8 @@ _feroxbuster() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -F _feroxbuster -o bashdefault -o default -o plusdirs feroxbuster
|
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
|
||||||
|
complete -F _feroxbuster -o nosort -o bashdefault -o default -o plusdirs feroxbuster
|
||||||
|
else
|
||||||
|
complete -F _feroxbuster -o bashdefault -o default -o plusdirs feroxbuster
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user