2024-04-06 18:51:37 +01:00
|
|
|
# ./cargo/config
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
2024-05-16 20:00:29 +01:00
|
|
|
linker = "/usr/bin/clang-16"
|
|
|
|
rustflags = [
|
|
|
|
"-C",
|
|
|
|
"link-arg=--ld-path=/usr/bin/mold",
|
|
|
|
"--cfg",
|
|
|
|
"tokio_unstable",
|
|
|
|
]
|
2024-04-06 18:51:37 +01:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
debug = 0
|
|
|
|
strip = "debuginfo"
|
|
|
|
|
|
|
|
[env]
|
2024-06-19 07:03:08 +01:00
|
|
|
RUST_LOG = "hyper=warn,debug"
|
2024-04-06 18:51:37 +01:00
|
|
|
RUSTFLAGS = "--cfg tokio_unstable"
|