Skip to content

Commit

Permalink
chore: Bump version of versions crate
Browse files Browse the repository at this point in the history
Otherwise we get a clippy error in CI
  • Loading branch information
LeonMatthesKDAB committed Jun 18, 2024
1 parent cd59f30 commit 31261d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/qt-build-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository.workspace = true

[dependencies]
cc.workspace = true
versions = "6.0.0"
versions = "6.3"
thiserror = "1.0"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/qt-build-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl QtBuild {
.unwrap()
.trim()
.to_string();
let qmake_version = versions::SemVer::new(&version_string).unwrap();
let qmake_version = versions::SemVer::new(version_string).unwrap();
if let Ok(env_version) = env::var("QT_VERSION_MAJOR") {
let env_version = match env_version.trim().parse::<u32>() {
Err(e) if *e.kind() == std::num::IntErrorKind::Empty => {
Expand Down

0 comments on commit 31261d5

Please sign in to comment.