Skip to content

Commit 33d2d1e

Browse files
authored
Merge pull request #1673 from Kobzol/edition-2021
Move all rustc-perf crates to edition 2021
2 parents 35c15ba + ea77c11 commit 33d2d1e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["The Rust Compiler Team"]
33
name = "collector"
44
version = "0.1.0"
5-
edition = "2018"
5+
edition = "2021"
66
description = "Collects Rust performance data"
77

88
[dependencies]

collector/src/compile/benchmark/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,6 @@ mod tests {
532532
None,
533533
)
534534
.unwrap();
535-
assert!(benchmarks.len() > 0);
535+
assert!(!benchmarks.is_empty());
536536
}
537537
}

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "database"
33
version = "0.1.0"
44
authors = ["Mark Rousskov <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[dependencies]
88
hashbrown = { version = "0.13", features = ["serde"] }

intern/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "intern"
33
version = "0.1.0"
44
authors = ["Mark Rousskov <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[dependencies]
88
bumpalo = "3.2"

site/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Mark-Simulacrum <[email protected]>", "Nicholas Cameron <[email protected]>", "The rustc-perf contributors"]
33
name = "site"
44
version = "0.1.0"
5-
edition = '2018'
5+
edition = "2021"
66

77
[dependencies]
88
env_logger = "0.10"

0 commit comments

Comments
 (0)