-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (39 loc) · 825 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
34
35
36
37
38
39
40
41
[workspace.package]
version = "0.3.1"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/modoh-server"
repository = "https://github.com/junkurihara/modoh-server"
license = "MIT"
readme = "./README.md"
categories = [
"asynchronous",
"network-programming",
"command-line-utilities",
"web-programming::http-server",
]
keywords = [
"dns",
"https",
"dns-over-https",
"doh",
"oblivious-dns-over-https",
"odoh",
"mutualized-oblivious-dns",
"mutualized-odoh",
"modoh",
"relay",
"authorization",
]
edition = "2021"
publish = false
[workspace]
members = ["modoh-bin", "modoh-lib", "httpsig-wire-proto", "httpsig-registry"]
exclude = ["submodules/hyper-tls"]
resolver = "2"
[profile.release]
codegen-units = 1
incremental = false
lto = "fat"
opt-level = 3
panic = "abort"
strip = true