-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
54 lines (51 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "cruster"
version = "0.7.2"
edition = "2021"
authors = ["Andrey Ivanov"]
description = "Something between MitMProxy, Burp Suite/ZAP and Nuclei"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# General
async-trait = "0.1.7"
regex = "1.6.0"
rustls = "0.20.8"
reqwest = { version = "0.11.14", default_features = false, features = ["rustls-tls-native-roots", "gzip", "brotli", "deflate", "multipart", "stream"]}
hyper = { version = "0.14.7", features = ["http1", "http2", "client"] }
hyper-rustls = { version = "0.23.2", features = ["webpki-roots", "http2", "http1"]}
# reqwest = { version = "0.11.13", features = ["blocking"] }
bstr = "0.2.1"
rand = { version = "0.8.0"}
http = "0.2.0"
tokio = { version = "1.6.1", features = ["full"] }
time = { version = "0.3.1" }
hudsucker = { version = "0.20.0", features = ["http2", "rustls-client", "native-tls-client"] }
rustls-pemfile = { version = "1.0.1", optional = true}
colored = "2.0.0"
# ---------------------------------------------------------------------
# Cursive
# cursive = "0.20.0"
cursive = { version = "0.20.0", default_features = false, optional = true }
cursive_table_view = "0.14.0"
crossbeam-channel = "0.5.6"
cursive_buffered_backend = "0.6.1"
cli-clipboard = "0.4.0"
# ---------------------------------------------------------------------
# Configuration
shellexpand = "2.1.0"
clap = "4.3.0"
serde = { version = "1.0.137", features = ["derive"] }
serde_yaml = "0.8.24"
serde_json = "1.0.89"
flate2 = "1.0.24"
log4rs = "1.2.0"
log = "0.4.17"
base64 = "0.13.1"
rcgen = { version = "0.10.0", features = ["x509-parser", "pem"]}
[features]
crossterm = ["cursive/crossterm-backend"]
rcgen-ca = ["hudsucker/rcgen-ca", "dep:rustls-pemfile"]
default = ["crossterm", "rcgen-ca"]
ncurses = ["cursive/ncurses-backend"]
openssl-ca = ["hudsucker/openssl-ca"]
termion = ["cursive/termion-backend"]