summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorMathijs van Veluw <[email protected]>2024-02-08 22:16:29 +0100
committerGitHub <[email protected]>2024-02-08 22:16:29 +0100
commitb9bdc9b8e227b556e6744c675a259b29d9e277db (patch)
tree203c5bf594ad5dff46c4210c5433f49566cc7276 /build.rs
parent897bdf8343148ee4e4f1a937cbc501ad3f743b4a (diff)
downloadvaultwarden-b9bdc9b8e227b556e6744c675a259b29d9e277db.tar.gz
vaultwarden-b9bdc9b8e227b556e6744c675a259b29d9e277db.zip
Update Rust, crates and web-vault (#4328)
- Updated Rust to v1.76.0 - Updated crates - Updated web-vault to v2024.1.2b - Fixed some Clippy lints - Moved lint check configuration Cargo.toml - Fixed issue with Reset Password Enrollment when logged-in via device
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.rs b/build.rs
index 63b3bc45..e7bfb7de 100644
--- a/build.rs
+++ b/build.rs
@@ -49,11 +49,11 @@ fn run(args: &[&str]) -> Result<String, std::io::Error> {
/// This method reads info from Git, namely tags, branch, and revision
/// To access these values, use:
-/// - env!("GIT_EXACT_TAG")
-/// - env!("GIT_LAST_TAG")
-/// - env!("GIT_BRANCH")
-/// - env!("GIT_REV")
-/// - env!("VW_VERSION")
+/// - `env!("GIT_EXACT_TAG")`
+/// - `env!("GIT_LAST_TAG")`
+/// - `env!("GIT_BRANCH")`
+/// - `env!("GIT_REV")`
+/// - `env!("VW_VERSION")`
fn version_from_git_info() -> Result<String, std::io::Error> {
// The exact tag for the current commit, can be empty when
// the current commit doesn't have an associated tag