Unverified Commit 6337d905 authored by Simo Lin's avatar Simo Lin Committed by GitHub
Browse files

[router] optimize Rust compilation and development workflow (#9133)

parent 71fb8c95
[build]
rustflags = [
]
rustflags = []
incremental = true
[target.aarch64-apple-darwin]
rustflags = [
......
......@@ -58,3 +58,18 @@ path = "benches/request_processing.rs"
[profile.release]
lto = "thin"
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
incremental = true
[profile.dev.build-override]
opt-level = 3
codegen-units = 1
[profile.dev-opt]
inherits = "dev"
opt-level = 1
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment