diff options
author | Mathijs van Veluw <[email protected]> | 2023-12-09 23:04:33 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-12-09 23:04:33 +0100 |
commit | 3246251f295fd16dba21ec9d32afbbb104bd9c8e (patch) | |
tree | b74920222f24255d492a8547d0c5667a6b13d5e3 /rust-toolchain.toml | |
parent | 8ab200224e9ef0879ccd35080365118b08c43b02 (diff) | |
download | vaultwarden-3246251f295fd16dba21ec9d32afbbb104bd9c8e.tar.gz vaultwarden-3246251f295fd16dba21ec9d32afbbb104bd9c8e.zip |
Fix the version string (#4153)
For some reason still not known, the `.git` directory was not copied
into the container. I think buildkit (buildx) did this by default before, and
stopped this with newer versions.
This PR fixes this by also touching `build.rs` besides `src/main.rs`.
This PR also updates Rust to v1.74.1 and some crates, including the
latest version of Alpine 3.19.
Fixes #4150
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r-- | rust-toolchain.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 2b1261ca..6a2121cc 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.74.0" +channel = "1.74.1" components = [ "rustfmt", "clippy" ] profile = "minimal" |