-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (31 loc) · 907 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (31 loc) · 907 Bytes
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
[package]
name = "rustfuzz"
version = "3.3.0"
edition = "2021"
authors = ["Fuad Alizada fuadelizade6@gmail.com"]
license = "LICENSE"
description = "Website Fuzzer implementation in Rust"
repository = "https://github.com/martian58/rustfuzz.git"
readme = "README.md"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
futures = "0.3"
indicatif = "0.17"
rand = "0.8"
regex = "1"
reqwest = { version = "0.12", features = ["json", "gzip", "cookies", "stream", "rustls-tls", "socks"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
url = "2.5"
csv = "1.3"
toml = "0.8"
[package.metadata.deb]
maintainer = "martian58"
license-file = "LICENSE"
[package.metadata.rpm]
package = "rustfuzz"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
rustfuzz = { path = "/usr/bin/rustfuzz" }