-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 753 Bytes
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 753 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
[workspace]
members = ["proxy-bin", "proxy-lib"]
resolver = "2"
[workspace.package]
version = "0.4.3"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/doh-auth-proxy"
repository = "https://github.com/junkurihara/doh-auth-proxy"
license = "MIT"
readme = "./README.md"
categories = [
"asynchronous",
"network-programming",
"command-line-utilities",
"web-programming::http-client",
]
keywords = [
"dns",
"https",
"dns-over-https",
"doh",
"oblivious-dns-over-https",
"odoh",
"mutualized-oblivious-dns",
"mutualized-odoh",
"modoh",
"proxy",
"authorization",
]
edition = "2024"
publish = false
[profile.release]
codegen-units = 1
incremental = false
lto = "fat"
opt-level = 3
panic = "abort"
strip = true