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
80
81
82
83
84
85
86
87
88
[]
= "certsd"
= "0.6.13"
= "2024"
= ["Daniel (dmilith) Dettlaff <dmilith@me.com>"]
= "CertsD - automated, asynchronous LE certificate issuer."
= ["acme"]
= ["asynchronous"]
= "https://github.com/VerKnowSys/certsd-open"
= "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[]
= { = "0.1.44", = ["log", "attributes", "std"] }
= { = "0.3.23", = ["registry", "fmt", "env-filter"] }
= { = "1.0", = ["derive"] }
= "1.0.102"
= { = "1.52.1", = ["macros", "tokio-macros", "fs"] }
= "0.14.0"
= "0.0.3"
= "0.10.77"
= "1.1.1"
= "0.4.44"
= "0.12.1"
= "0.10.1"
= "0.1.2"
# The release profile, used for `cargo build --release`.
[]
= 3
= false
= false
= true
= false
= 1
= false
= false
# The benchmarking profile, used for `cargo bench` and `cargo test --release`.
[]
= 3
= false
= false
= true
= false
= 1
= false
= true
# The testing profile, used for `cargo test`.
[]
= 1
= 2
= false
= false
= true
= 12
= true
= true
# The development (default) profile, used for `cargo build`.
[]
= 0 # controls the `--opt-level` the compiler builds with.
# 0-1 is good for debugging. 2 is well-optimized. Max is 3.
# 's' attempts to reduce size, 'z' reduces size even more.
= 2 # (u32 or bool) Include debug information (debug symbols).
# Equivalent to `-C debuginfo=2` compiler flag.
= true # controls whether debug assertions are enabled
# (e.g. debug_assert!() and arithmetic overflow checks)
= false # controls whether compiler should set loader paths.
# If true, passes `-C rpath` flag to the compiler.
= false # Link Time Optimization usually reduces size of binaries
# and static libraries. Increases compilation time.
# If true, passes `-C lto` flag to the compiler, and if a
# string is specified like 'thin' then `-C lto=thin` will
# be passed.
= 8 # if > 1 enables parallel code generation which improves
# compile times, but prevents some optimizations.
# Passes `-C codegen-units`.
= 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'
= true # whether or not incremental compilation is enabled
= true # use overflow checks for integer arithmetic.
# Passes the `-C overflow-checks=...` flag to the compiler.