make it maybe faster

This commit is contained in:
Bryan Stitt 2022-05-13 07:05:38 +00:00
parent 77a99bd5ae
commit c884cf5bbb
2 changed files with 7 additions and 0 deletions

View File

@ -3,3 +3,7 @@ members = [
"linkedhashmap",
"web3-proxy",
]
[profile.release]
lto = true
panic = "abort"

View File

@ -1,5 +1,8 @@
FROM rust:1-bullseye as builder
# potentially faster. https://nnethercote.github.io/perf-book/build-configuration.html
ENV RUSTFLAGS "-C target-cpu=native"
WORKDIR /usr/src/web3-proxy
COPY . .
RUN --mount=type=cache,target=/usr/local/cargo/registry \