aboutsummaryrefslogtreecommitdiff
path: root/rust-toolchain.toml
diff options
context:
space:
mode:
authorMathijs van Veluw <[email protected]>2023-12-09 23:04:33 +0100
committerGitHub <[email protected]>2023-12-09 23:04:33 +0100
commit3246251f295fd16dba21ec9d32afbbb104bd9c8e (patch)
treeb74920222f24255d492a8547d0c5667a6b13d5e3 /rust-toolchain.toml
parent8ab200224e9ef0879ccd35080365118b08c43b02 (diff)
downloadvaultwarden-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.toml2
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"