web3-proxy/.cargo/config.toml
2023-06-27 11:59:49 -07:00

21 lines
661 B
TOML

[build]
rustflags = [
# potentially faster. https://nnethercote.github.io/perf-book/build-configuration.html
"-C", "target-cpu=native",
# tokio unstable is needed for tokio-console
"--cfg", "tokio_unstable",
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
]
rustdocflags = [
# potentially faster. https://nnethercote.github.io/perf-book/build-configuration.html
"-C", "target-cpu=native",
# tokio unstable is needed for tokio-console
"--cfg", "tokio_unstable",
# uuid unstable is needed for zerocopy deserialize
"--cfg", "uuid_unstable",
]
[registries.crates-io]
protocol = "sparse"