From 5ffb0ae8431d120780461a0c8356ce672105fd4c Mon Sep 17 00:00:00 2001 From: Fethbita Date: Sun, 6 Oct 2024 23:52:09 +0300 Subject: [PATCH] Add cargo audit and msrv back --- .cargo/config.toml | 2 +- Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 78a6ca8..af40dd9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [build] rustflags = ["-C", "target-feature=-crt-static"] -rustdocflags = ["-C", "target-feature=-crt-static"] \ No newline at end of file +rustdocflags = ["-C", "target-feature=-crt-static"] diff --git a/Dockerfile b/Dockerfile index f9c2e76..503e273 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apk update && \ make \ perl-dev \ # For cargo-msrv - openssl-libs-static # && \ + openssl-libs-static && \ # Install cargo-audit and cargo-msrv - #cargo install --version 0.20.1 cargo-audit && \ - #cargo install --version 0.15.1 cargo-msrv + cargo install --version 0.20.1 cargo-audit && \ + cargo install --version 0.15.1 cargo-msrv