29 Zeilen
537 B
TOML
29 Zeilen
537 B
TOML
[env]
|
|
RUST_LOG="TRACE"
|
|
#RUST_LOG="DEBUG"
|
|
SSL_CERT_DIR="/etc/ca-certificates/extracted/cadir/"
|
|
SSL_CERT_FILE="/etc/ca-certificates/extracted/tls-ca-bundle.pem"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
debug = true
|
|
strip = "none"
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
lto = false
|
|
panic = "abort"
|
|
incremental = true
|
|
codegen-units = 16
|
|
rpath = false
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
strip = "debuginfo"
|
|
debug-assertions = false
|
|
overflow-checks = true
|
|
lto = true
|
|
panic = 'abort'
|
|
incremental = true
|
|
codegen-units = 16
|
|
rpath = false
|