git-next/.cargo/config.toml
Paul Campbell f038ab508b
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Rust / build (push) Successful in 1m21s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
chore: fix name in config file
2024-06-29 20:03:25 +01:00

17 lines
295 B
TOML

# ./cargo/config.toml
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang-16"
rustflags = [
"-C",
"link-arg=--ld-path=/usr/bin/mold",
"--cfg",
"tokio_unstable",
]
[profile.dev]
debug = 0
strip = "debuginfo"
[env]
RUST_LOG = "hyper=warn,debug"
RUSTFLAGS = "--cfg tokio_unstable"