-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (73 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
79 lines (73 loc) · 1.92 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "proxy-spider"
version = "0.1.0"
edition = "2024"
license = "MIT"
publish = false
[dependencies]
async-trait = "=0.1.89"
color-eyre = "=0.6.5"
crossterm = { version = "=0.28.1", features = [
"event-stream",
], optional = true }
dhat = { version = "=0.3.3", optional = true }
dirs = "=6.0.0"
fancy-regex = "=0.16.1"
foldhash = "=0.2.0"
futures = { version = "=0.3.31", optional = true }
hickory-resolver = "=0.25.2"
http = "=1.3.1"
httpdate = "=1.0.3"
itertools = "=0.14"
log = { version = "=0.4.28", features = [
"max_level_debug",
"release_max_level_debug",
] }
maxminddb = { version = "=0.26.0", features = ["mmap"] }
parking_lot = "=0.12.4"
rand = "=0.9.2"
ratatui = { version = "=0.29.0", optional = true }
reqwest = { version = "=0.12.23", default-features = false, features = [
"brotli",
"charset",
"gzip",
"http2",
"rustls-tls",
"socks",
"system-proxy",
] }
reqwest-middleware = "=0.4.2"
rlimit = "=0.10.2"
serde = "=1.0.225"
serde_json = "=1.0.145"
tokio = { version = "=1.47.1", features = ["full"] }
tokio-util = "=0.7.16"
toml = "=0.9.6"
tracing = { version = "=0.1.41", features = [
"max_level_debug",
"release_max_level_debug",
] }
tracing-subscriber = { version = "=0.3.20", features = ["parking_lot"] }
tui-logger = { version = "=0.17.3", features = [
"tracing-support",
], optional = true }
url = "=2.5.7"
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "x86_64"), any(target_os = "linux", target_os = "macos", target_os = "windows")))'.dependencies]
mimalloc = { version = "=0.1.48", optional = true, features = ["v3"] }
[features]
dhat = ["dep:dhat"]
mimalloc = ["dep:mimalloc"]
tui = ["dep:crossterm", "dep:futures", "dep:ratatui", "dep:tui-logger"]
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
[profile.dhat]
inherits = "release"
debug = true
strip = "none"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"
lto = "off"