-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
43 lines (41 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "rustpad"
version = "1.8.1"
description = "Multi-threaded Padding Oracle attacks against any service."
authors = ["Csonka Mihaly <csonka.mihaly@hotmail.com>"]
license = "GPL-3.0"
repository = "https://github.com/Kibouo/rustpad/"
edition = "2021"
[profile.release]
# cherry-picked size optimisations from https://github.com/johnthagen/min-sized-rust
strip = true
lto = true
codegen-units = 1
[dependencies]
clap = { version = "3.0", default-features = true, features = ["derive", "wrap_help"] }
clap_complete = "3.0"
reqwest = { version = "0.11", default-features = true, features = ["blocking", "socks"] }
anyhow = "1.0"
base64 = "0.13"
hex = "0.4"
urlencoding = "2.1"
is_executable = "1.0"
rayon = "1.5"
# use crossterm for windows compatibility
tui = { version = "0.16", default-features = false, features = ["crossterm"] }
crossterm = { version = "0.22", default-features = true, features = ["event-stream"] }
getset = "0.1"
crossbeam = "0.8"
tui-logger = "0.6"
log = "0.4"
retry = "1.3"
humantime = "2.1"
itertools = "0.10"
futures = "0.3"
futures-timer = "3.0"
async-std = "1.10"
async-scoped = { version = "0.7", default-features = false, features = ["use-async-std"] }
atty = "0.2"
serde = { version = "1.0", features = ["derive"] }
rmp-serde = "0.15"
dirs = "4.0"