Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit d6d08a3

Browse files
committed
chore: update to v1.1.0; use rust edition 2024
1 parent e157131 commit d6d08a3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "oxidizr"
3-
version = "1.0.0"
4-
edition = "2021"
3+
version = "1.1.0"
4+
edition = "2024"
55

66
[dependencies]
77
clap = { version = "4.5.34", features = ["derive"] }

src/experiments/sudors.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ impl<'a> SudoRsExperiment<'a> {
2929

3030
/// Reports the first supported release for the experiment.
3131
pub fn supported_releases(&self) -> Vec<String> {
32-
return vec![
32+
vec![
3333
"24.04".to_string(),
3434
"24.10".to_string(),
3535
"25.04".to_string(),
36-
];
36+
]
3737
}
3838

3939
/// Check if the package is installed.

src/experiments/uutils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl<'a> UutilsExperiment<'a> {
4949

5050
/// Reports the first supported release for the experiment.
5151
pub fn supported_releases(&self) -> Vec<String> {
52-
return self.supported_releases.clone();
52+
self.supported_releases.clone()
5353
}
5454

5555
/// Check if the package is installed.

0 commit comments

Comments
 (0)