fix: Updated dependencies to allow build on NetBSD

closes #371
This commit is contained in:
Christian Visintin
2025-12-20 16:33:50 +01:00
parent 5f7a0d8a46
commit b04976bde3
20 changed files with 525 additions and 582 deletions

View File

@@ -233,7 +233,7 @@ mod test {
#[test]
fn should_tell_that_version_is_higher() {
assert!(Update::is_new_version_higher("0.10.0", "0.9.0"));
assert!(Update::is_new_version_higher("0.20.0", "0.19.0"));
assert!(Update::is_new_version_higher("0.20.0", "0.19.1"));
assert!(!Update::is_new_version_higher("0.9.0", "0.10.0"));
assert!(!Update::is_new_version_higher("0.9.9", "0.10.1"));
assert!(!Update::is_new_version_higher("0.10.9", "0.11.0"));