-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 983 Bytes
/
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
[package]
name = "DnsSafeguard"
version = "1.7.3"
edition = "2021"
license = "Apache-2.0"
description = "DnsSafeguard is dedicated to providing a secure DNS client solution, ensuring your DNS queries remain private and uncensored."
homepage = "https://github.com/radioactiveAHM/DnsSafeguard"
repository = "https://github.com/radioactiveAHM/DnsSafeguard"
categories = ["network-programming"]
[dependencies]
webpki-roots = "0.26.6"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
rand = "0.8.5"
quinn = "0.11.5"
tokio = { version = "1.41.0", features = ["rt-multi-thread", "net", "macros"] }
h3-quinn = "0.0.7"
h3 = "0.0.6"
http = "1.1.0"
bytes = "1.8.0"
base64-url = "3.0.0"
h2 = "0.4.6"
tokio-rustls = { git = "https://github.com/radioactiveAHM/tokio-rustls.git", default-features = false, features = ["ring"] }
crossbeam-channel = "0.5.13"
socket2 = "0.5.7"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"
strip = true