Skip to content

Commit 06a1c14

Browse files
committed
Switch all libraries to the 2021 edition
1 parent f52eb4c commit 06a1c14

File tree

18 files changed

+18
-65
lines changed

18 files changed

+18
-65
lines changed

library/alloc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/rust-lang/rust.git"
66
description = "The Rust core allocation and collections library"
77
autotests = false
88
autobenches = false
9-
edition = "2018"
9+
edition = "2021"
1010

1111
[dependencies]
1212
core = { path = "../core" }

library/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/rust-lang/rust.git"
66
description = "The Rust Core Library"
77
autotests = false
88
autobenches = false
9-
edition = "2018"
9+
edition = "2021"
1010

1111
[lib]
1212
test = false

library/core/src/array/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ where
6666
///
6767
/// ```rust
6868
/// #![feature(array_from_fn)]
69-
/// # // Apparently these doc tests are still on edition2018
70-
/// # use std::convert::TryInto;
7169
///
7270
/// let array: Result<[u8; 5], _> = std::array::try_from_fn(|i| i.try_into());
7371
/// assert_eq!(array, Ok([0, 1, 2, 3, 4]));

library/core/src/convert/mod.rs

-4
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,6 @@ pub trait TryInto<T>: Sized {
426426
/// `TryFrom<T>` can be implemented as follows:
427427
///
428428
/// ```
429-
/// use std::convert::TryFrom;
430-
///
431429
/// struct GreaterThanZero(i32);
432430
///
433431
/// impl TryFrom<i32> for GreaterThanZero {
@@ -448,8 +446,6 @@ pub trait TryInto<T>: Sized {
448446
/// As described, [`i32`] implements `TryFrom<`[`i64`]`>`:
449447
///
450448
/// ```
451-
/// use std::convert::TryFrom;
452-
///
453449
/// let big_number = 1_000_000_000_000i64;
454450
/// // Silently truncates `big_number`, requires detecting
455451
/// // and handling the truncation after the fact.

library/core/src/iter/traits/collect.rs

-6
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
/// Basic usage:
1616
///
1717
/// ```
18-
/// use std::iter::FromIterator;
19-
///
2018
/// let five_fives = std::iter::repeat(5).take(5);
2119
///
2220
/// let v = Vec::from_iter(five_fives);
@@ -37,8 +35,6 @@
3735
/// Implementing `FromIterator` for your type:
3836
///
3937
/// ```
40-
/// use std::iter::FromIterator;
41-
///
4238
/// // A sample collection, that's just a wrapper over Vec<T>
4339
/// #[derive(Debug)]
4440
/// struct MyCollection(Vec<i32>);
@@ -102,8 +98,6 @@ pub trait FromIterator<A>: Sized {
10298
/// Basic usage:
10399
///
104100
/// ```
105-
/// use std::iter::FromIterator;
106-
///
107101
/// let five_fives = std::iter::repeat(5).take(5);
108102
///
109103
/// let v = Vec::from_iter(five_fives);

library/core/src/iter/traits/iterator.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1155,8 +1155,6 @@ pub trait Iterator {
11551155
/// Stopping after an initial [`None`]:
11561156
///
11571157
/// ```
1158-
/// use std::convert::TryFrom;
1159-
///
11601158
/// let a = [0, 1, 2, -3, 4, 5, -6];
11611159
///
11621160
/// let iter = a.iter().map_while(|x| u32::try_from(*x).ok());
@@ -1172,8 +1170,6 @@ pub trait Iterator {
11721170
/// removed:
11731171
///
11741172
/// ```
1175-
/// use std::convert::TryFrom;
1176-
///
11771173
/// let a = [1, 2, -3, 4];
11781174
/// let mut iter = a.iter();
11791175
///

library/core/src/num/int_macros.rs

-6
Original file line numberDiff line numberDiff line change
@@ -2602,8 +2602,6 @@ macro_rules! int_impl {
26022602
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
26032603
///
26042604
/// ```
2605-
/// use std::convert::TryInto;
2606-
///
26072605
#[doc = concat!("fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
26082606
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
26092607
/// *input = rest;
@@ -2633,8 +2631,6 @@ macro_rules! int_impl {
26332631
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
26342632
///
26352633
/// ```
2636-
/// use std::convert::TryInto;
2637-
///
26382634
#[doc = concat!("fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
26392635
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
26402636
/// *input = rest;
@@ -2675,8 +2671,6 @@ macro_rules! int_impl {
26752671
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
26762672
///
26772673
/// ```
2678-
/// use std::convert::TryInto;
2679-
///
26802674
#[doc = concat!("fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
26812675
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
26822676
/// *input = rest;

library/core/src/num/uint_macros.rs

-6
Original file line numberDiff line numberDiff line change
@@ -2323,8 +2323,6 @@ macro_rules! uint_impl {
23232323
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
23242324
///
23252325
/// ```
2326-
/// use std::convert::TryInto;
2327-
///
23282326
#[doc = concat!("fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
23292327
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
23302328
/// *input = rest;
@@ -2354,8 +2352,6 @@ macro_rules! uint_impl {
23542352
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
23552353
///
23562354
/// ```
2357-
/// use std::convert::TryInto;
2358-
///
23592355
#[doc = concat!("fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
23602356
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
23612357
/// *input = rest;
@@ -2396,8 +2392,6 @@ macro_rules! uint_impl {
23962392
/// When starting from a slice rather than an array, fallible conversion APIs can be used:
23972393
///
23982394
/// ```
2399-
/// use std::convert::TryInto;
2400-
///
24012395
#[doc = concat!("fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT), " {")]
24022396
#[doc = concat!(" let (int_bytes, rest) = input.split_at(std::mem::size_of::<", stringify!($SelfT), ">());")]
24032397
/// *input = rest;

library/panic_abort/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/rust-lang/rust.git"
66
description = "Implementation of Rust panics via process aborts"
7-
edition = "2018"
7+
edition = "2021"
88

99
[lib]
1010
test = false

library/panic_unwind/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/rust-lang/rust.git"
66
description = "Implementation of Rust panics via stack unwinding"
7-
edition = "2018"
7+
edition = "2021"
88

99
[lib]
1010
test = false

library/proc_macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "proc_macro"
33
version = "0.0.0"
4-
edition = "2018"
4+
edition = "2021"
55

66
[dependencies]
77
std = { path = "../std" }

library/profiler_builtins/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "profiler_builtins"
33
version = "0.0.0"
4-
edition = "2018"
4+
edition = "2021"
55

66
[lib]
77
test = false

library/rustc-std-workspace-alloc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = 'MIT OR Apache-2.0'
55
description = """
66
Hack for the compiler's own build system
77
"""
8-
edition = "2018"
8+
edition = "2021"
99

1010
[lib]
1111
path = "lib.rs"

library/rustc-std-workspace-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = 'MIT OR Apache-2.0'
55
description = """
66
Hack for the compiler's own build system
77
"""
8-
edition = "2018"
8+
edition = "2021"
99

1010
[lib]
1111
path = "lib.rs"

library/rustc-std-workspace-std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = 'MIT OR Apache-2.0'
55
description = """
66
Hack for the compiler's own build system
77
"""
8-
edition = "2018"
8+
edition = "2021"
99

1010
[lib]
1111
path = "lib.rs"

library/test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "test"
33
version = "0.0.0"
4-
edition = "2018"
4+
edition = "2021"
55

66
[lib]
77
crate-type = ["dylib", "rlib"]

library/unwind/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "unwind"
33
version = "0.0.0"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/rust-lang/rust.git"
6-
edition = "2018"
6+
edition = "2021"
77
include = [
88
'/libunwind/*',
99
]

src/tools/tidy/src/edition.rs

+7-26
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
33
use std::path::Path;
44

5-
fn is_edition_2018(mut line: &str) -> bool {
6-
line = line.trim();
7-
line == "edition = \"2018\""
8-
}
9-
105
fn is_edition_2021(mut line: &str) -> bool {
116
line = line.trim();
127
line == "edition = \"2021\""
@@ -23,27 +18,13 @@ pub fn check(path: &Path, bad: &mut bool) {
2318
return;
2419
}
2520

26-
// Not all library crates are ready to migrate to 2021.
27-
if file.components().any(|c| c.as_os_str() == "library")
28-
&& file.components().all(|c| c.as_os_str() != "std")
29-
{
30-
let has = contents.lines().any(is_edition_2018);
31-
if !has {
32-
tidy_error!(
33-
bad,
34-
"{} doesn't have `edition = \"2018\"` on a separate line",
35-
file.display()
36-
);
37-
}
38-
} else {
39-
let is_2021 = contents.lines().any(is_edition_2021);
40-
if !is_2021 {
41-
tidy_error!(
42-
bad,
43-
"{} doesn't have `edition = \"2021\"` on a separate line",
44-
file.display()
45-
);
46-
}
21+
let is_2021 = contents.lines().any(is_edition_2021);
22+
if !is_2021 {
23+
tidy_error!(
24+
bad,
25+
"{} doesn't have `edition = \"2021\"` on a separate line",
26+
file.display()
27+
);
4728
}
4829
},
4930
);

0 commit comments

Comments
 (0)