git-next/.cargo/config.toml
Paul Campbell 9c441a052c
Some checks failed
Rust / build (push) Waiting to run
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline failed
ci/woodpecker/push/tag-created Pipeline was successful
refactor: repo-actor: rewrite tests using mockall
2024-06-27 18:44:49 +01:00

17 lines
290 B
TOML

# ./cargo/config
[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"