web3-proxy/.cargo/config.toml

10 lines
377 B
TOML
Raw Normal View History

2022-05-17 19:25:25 +03:00
[build]
2022-08-30 23:01:42 +03:00
rustflags = [
# potentially faster. https://nnethercote.github.io/perf-book/build-configuration.html
# TODO: we might want to disable this so its easier to run the proxy across different aws instance types
2022-08-30 23:01:42 +03:00
"-C", "target-cpu=native",
# tokio unstable is needed for tokio-console
"--cfg", "tokio_unstable"
]
rustdocflags = ["--cfg", "tokio_unstable"]