-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (51 loc) · 1.47 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
55
56
57
58
59
[package]
name = "searproxy"
version = "0.4.17"
edition = "2021"
license = "AGPL-3.0"
publish = false
[profile.release]
codegen-units = 1
lto = true
[dependencies]
base64 = "=0.22.1"
bytes = "=1.8.0"
clap = { version = "=4.5.20", features = ["derive", "env"] }
fern = "=0.7.0"
futures-util = "=0.3.31"
hex = "=0.4.3"
hmac = "=0.12.1"
htmlentity = "=1.3.2"
log = "=0.4.22"
lol_html = "=2.0.0"
markup = { git = "https://github.com/utkarshkukreti/markup.rs", rev = "c1dc693e0d3e312d52160c312961bf47f1cffbf7" }
mime = "=0.3.17"
once_cell = "=1.20.2"
regex = "=1.11.1"
serde = { version = "=1.0.214", features = ["derive"] }
serde_qs = "=0.13.0"
thiserror = "=1.0.66"
url = "=2.5.2"
[dependencies.actix-web]
version = "=4.9.0"
default-features = false
features = ["compress-brotli", "compress-gzip", "compress-zstd", "macros"]
[dependencies.reqwest]
version = "=0.12.9"
default-features = false
features = ["brotli", "socks", "gzip", "deflate", "stream", "rustls-tls", "trust-dns"]
[target.'cfg(not(any(target_arch = "arm", target_arch = "armv7", target_family = "windows")))'.dependencies.sha2]
version = "=0.10.8"
default-features = false
features = ["asm", "std"]
[target.'cfg(any(target_arch = "arm", target_arch = "armv7", target_family = "windows"))'.dependencies.sha2]
version = "=0.10.8"
default-features = false
features = ["std"]
[build-dependencies]
base64 = "=0.22.1"
lightningcss = "=1.0.0-alpha.59"
[build-dependencies.sha2]
version = "=0.10.8"
default-features = false
features = ["std"]