Skip to content

Commit 8b671be

Browse files
committed
feat: Stabilize Edition 2024
1 parent 88edf01 commit 8b671be

File tree

9 files changed

+26
-122
lines changed

9 files changed

+26
-122
lines changed

src/cargo/core/features.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ features! {
507507
(stable, workspace_inheritance, "1.64", "reference/unstable.html#workspace-inheritance"),
508508

509509
/// Support for 2024 edition.
510-
(unstable, edition2024, "", "reference/unstable.html#edition-2024"),
510+
(stable, edition2024, "1.85", "reference/unstable.html#edition-2024"),
511511

512512
/// Allow setting trim-paths in a profile to control the sanitisation of file paths in build outputs.
513513
(unstable, trim_paths, "", "reference/unstable.html#profile-trim-paths-option"),

src/cargo/util/toml/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1217,9 +1217,7 @@ pub fn to_real_manifest(
12171217
// features.require(Feature::edition20xx())?;
12181218
// }
12191219
// ```
1220-
if edition == Edition::Edition2024 {
1221-
features.require(Feature::edition2024())?;
1222-
} else if !edition.is_stable() {
1220+
if !edition.is_stable() {
12231221
// Guard in case someone forgets to add .require()
12241222
return Err(util::errors::internal(format!(
12251223
"edition {} should be gated",

src/doc/src/reference/resolver.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ resolver = "2"
507507
- `"2"` ([`edition = "2021"`](manifest.md#the-edition-field) default): Introduces changes in [feature
508508
unification](#features). See the [features chapter][features-2] for more
509509
details.
510-
- `"3"` (requires Rust 1.84+): Change the default for [`resolver.incompatible-rust-versions`] from `allow` to `fallback`
510+
- `"3"` ([`edition = "2024"`](manifest.md#the-edition-field) default, requires Rust 1.84+): Change the default for [`resolver.incompatible-rust-versions`] from `allow` to `fallback`
511511

512512
The resolver is a global option that affects the entire workspace. The
513513
`resolver` version in dependencies is ignored, only the value in the top-level

src/doc/src/reference/unstable.md

+7-27
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ Each new feature described below should explain how to use it.
100100
* [codegen-backend](#codegen-backend) --- Select the codegen backend used by rustc.
101101
* [per-package-target](#per-package-target) --- Sets the `--target` to use for each individual package.
102102
* [artifact dependencies](#artifact-dependencies) --- Allow build artifacts to be included into other build artifacts and build them for different targets.
103-
* [Edition 2024](#edition-2024) — Adds support for the 2024 Edition.
104103
* [Profile `trim-paths` option](#profile-trim-paths-option) --- Control the sanitization of file paths in build outputs.
105104
* [`[lints.cargo]`](#lintscargo) --- Allows configuring lints for Cargo.
106105
* [path bases](#path-bases) --- Named base directories for path dependencies.
@@ -1363,32 +1362,6 @@ Differences between `cargo run --manifest-path <path>` and `cargo <path>`
13631362

13641363
### Documentation Updates
13651364

1366-
## Edition 2024
1367-
* Tracking Issue: (none created yet)
1368-
* RFC: [rust-lang/rfcs#3501](https://github.com/rust-lang/rfcs/pull/3501)
1369-
1370-
Support for the 2024 [edition] can be enabled by adding the `edition2024`
1371-
unstable feature to the top of `Cargo.toml`:
1372-
1373-
```toml
1374-
cargo-features = ["edition2024"]
1375-
1376-
[package]
1377-
name = "my-package"
1378-
version = "0.1.0"
1379-
edition = "2024"
1380-
```
1381-
1382-
If you want to transition an existing project from a previous edition, then
1383-
`cargo fix --edition` can be used on the nightly channel. After running `cargo
1384-
fix`, you can switch the edition to 2024 as illustrated above.
1385-
1386-
This feature is very unstable, and is only intended for early testing and
1387-
experimentation. Future nightly releases may introduce changes for the 2024
1388-
edition that may break your build.
1389-
1390-
[edition]: ../../edition-guide/index.html
1391-
13921365
## Profile `trim-paths` option
13931366

13941367
* Tracking Issue: [rust-lang/cargo#12137](https://github.com/rust-lang/cargo/issues/12137)
@@ -2013,3 +1986,10 @@ default behavior.
20131986

20141987
See the [build script documentation](build-scripts.md#rustc-check-cfg) for information
20151988
about specifying custom cfgs.
1989+
1990+
## Edition 2024
1991+
1992+
The 2024 edition has been stabilized in the 1.85 release.
1993+
See the [`edition` field](manifest.md#the-edition-field) for more information on setting the edition.
1994+
See [`cargo fix --edition`](../commands/cargo-fix.md) and [The Edition Guide](../../edition-guide/index.html) for more information on migrating existing projects.
1995+

tests/testsuite/bad_config.rs

+11-50
Original file line numberDiff line numberDiff line change
@@ -831,14 +831,12 @@ fn dev_dependencies2() {
831831
"#]]).run();
832832
}
833833

834-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
834+
#[cargo_test]
835835
fn dev_dependencies2_2024() {
836836
let p = project()
837837
.file(
838838
"Cargo.toml",
839839
r#"
840-
cargo-features = ["edition2024"]
841-
842840
[package]
843841
name = "foo"
844842
version = "0.1.0"
@@ -861,7 +859,6 @@ fn dev_dependencies2_2024() {
861859
.file("a/src/lib.rs", "")
862860
.build();
863861
p.cargo("check")
864-
.masquerade_as_nightly_cargo(&["edition2024"])
865862
.with_status(101)
866863
.with_stderr_data(str![[r#"
867864
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -949,14 +946,12 @@ fn build_dependencies2() {
949946
"#]]).run();
950947
}
951948

952-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
949+
#[cargo_test]
953950
fn build_dependencies2_2024() {
954951
let p = project()
955952
.file(
956953
"Cargo.toml",
957954
r#"
958-
cargo-features = ["edition2024"]
959-
960955
[package]
961956
name = "foo"
962957
version = "0.1.0"
@@ -979,7 +974,6 @@ fn build_dependencies2_2024() {
979974
.file("a/src/lib.rs", "")
980975
.build();
981976
p.cargo("check")
982-
.masquerade_as_nightly_cargo(&["edition2024"])
983977
.with_status(101)
984978
.with_stderr_data(str![[r#"
985979
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1060,14 +1054,12 @@ fn lib_crate_type2() {
10601054
.run();
10611055
}
10621056

1063-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1057+
#[cargo_test]
10641058
fn lib_crate_type2_2024() {
10651059
let p = project()
10661060
.file(
10671061
"Cargo.toml",
10681062
r#"
1069-
cargo-features = ["edition2024"]
1070-
10711063
[package]
10721064
name = "foo"
10731065
version = "0.5.0"
@@ -1082,7 +1074,6 @@ fn lib_crate_type2_2024() {
10821074
.file("src/lib.rs", "pub fn foo() {}")
10831075
.build();
10841076
p.cargo("check")
1085-
.masquerade_as_nightly_cargo(&["edition2024"])
10861077
.with_status(101)
10871078
.with_stderr_data(str![[r#"
10881079
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1154,14 +1145,12 @@ fn bin_crate_type2() {
11541145
.run();
11551146
}
11561147

1157-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1148+
#[cargo_test]
11581149
fn bin_crate_type2_2024() {
11591150
let p = project()
11601151
.file(
11611152
"Cargo.toml",
11621153
r#"
1163-
cargo-features = ["edition2024"]
1164-
11651154
[package]
11661155
name = "foo"
11671156
version = "0.5.0"
@@ -1177,7 +1166,6 @@ fn bin_crate_type2_2024() {
11771166
.file("src/main.rs", "fn main() {}")
11781167
.build();
11791168
p.cargo("check")
1180-
.masquerade_as_nightly_cargo(&["edition2024"])
11811169
.with_status(101)
11821170
.with_stderr_data(str![[r#"
11831171
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1268,14 +1256,12 @@ fn examples_crate_type2() {
12681256
.run();
12691257
}
12701258

1271-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1259+
#[cargo_test]
12721260
fn examples_crate_type2_2024() {
12731261
let p = project()
12741262
.file(
12751263
"Cargo.toml",
12761264
r#"
1277-
cargo-features = ["edition2024"]
1278-
12791265
[package]
12801266
name = "foo"
12811267
version = "0.5.0"
@@ -1307,7 +1293,6 @@ fn examples_crate_type2_2024() {
13071293
)
13081294
.build();
13091295
p.cargo("check")
1310-
.masquerade_as_nightly_cargo(&["edition2024"])
13111296
.with_status(101)
13121297
.with_stderr_data(str![[r#"
13131298
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1411,16 +1396,14 @@ fn cargo_platform_build_dependencies2() {
14111396
.run();
14121397
}
14131398

1414-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1399+
#[cargo_test]
14151400
fn cargo_platform_build_dependencies2_2024() {
14161401
let host = rustc_host();
14171402
let p = project()
14181403
.file(
14191404
"Cargo.toml",
14201405
&format!(
14211406
r#"
1422-
cargo-features = ["edition2024"]
1423-
14241407
[package]
14251408
name = "foo"
14261409
version = "0.5.0"
@@ -1444,7 +1427,6 @@ fn cargo_platform_build_dependencies2_2024() {
14441427
.build();
14451428

14461429
p.cargo("check")
1447-
.masquerade_as_nightly_cargo(&["edition2024"])
14481430
.with_status(101)
14491431
.with_stderr_data(str![[r#"
14501432
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1543,16 +1525,14 @@ fn cargo_platform_dev_dependencies2() {
15431525
.run();
15441526
}
15451527

1546-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1528+
#[cargo_test]
15471529
fn cargo_platform_dev_dependencies2_2024() {
15481530
let host = rustc_host();
15491531
let p = project()
15501532
.file(
15511533
"Cargo.toml",
15521534
&format!(
15531535
r#"
1554-
cargo-features = ["edition2024"]
1555-
15561536
[package]
15571537
name = "foo"
15581538
version = "0.5.0"
@@ -1575,7 +1555,6 @@ fn cargo_platform_dev_dependencies2_2024() {
15751555
.build();
15761556

15771557
p.cargo("check")
1578-
.masquerade_as_nightly_cargo(&["edition2024"])
15791558
.with_status(101)
15801559
.with_stderr_data(str![[r#"
15811560
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1675,14 +1654,12 @@ fn default_features2() {
16751654
"#]]).run();
16761655
}
16771656

1678-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1657+
#[cargo_test]
16791658
fn default_features2_2024() {
16801659
let p = project()
16811660
.file(
16821661
"Cargo.toml",
16831662
r#"
1684-
cargo-features = ["edition2024"]
1685-
16861663
[package]
16871664
name = "foo"
16881665
version = "0.1.0"
@@ -1712,7 +1689,6 @@ fn default_features2_2024() {
17121689
.build();
17131690

17141691
p.cargo("check")
1715-
.masquerade_as_nightly_cargo(&["edition2024"])
17161692
.with_status(101)
17171693
.with_stderr_data(str![[r#"
17181694
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -1852,7 +1828,7 @@ fn workspace_default_features2() {
18521828
.run();
18531829
}
18541830

1855-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1831+
#[cargo_test]
18561832
fn workspace_default_features2_2024() {
18571833
let p = project()
18581834
.file(
@@ -1869,8 +1845,6 @@ fn workspace_default_features2_2024() {
18691845
.file(
18701846
"workspace_only/Cargo.toml",
18711847
r#"
1872-
cargo-features = ["edition2024"]
1873-
18741848
[package]
18751849
name = "workspace_only"
18761850
version = "0.1.0"
@@ -1885,8 +1859,6 @@ fn workspace_default_features2_2024() {
18851859
.file(
18861860
"dep_workspace_only/Cargo.toml",
18871861
r#"
1888-
cargo-features = ["edition2024"]
1889-
18901862
[package]
18911863
name = "dep_workspace_only"
18921864
version = "0.1.0"
@@ -1898,8 +1870,6 @@ fn workspace_default_features2_2024() {
18981870
.file(
18991871
"package_only/Cargo.toml",
19001872
r#"
1901-
cargo-features = ["edition2024"]
1902-
19031873
[package]
19041874
name = "package_only"
19051875
version = "0.1.0"
@@ -1914,8 +1884,6 @@ fn workspace_default_features2_2024() {
19141884
.file(
19151885
"dep_package_only/Cargo.toml",
19161886
r#"
1917-
cargo-features = ["edition2024"]
1918-
19191887
[package]
19201888
name = "dep_package_only"
19211889
version = "0.1.0"
@@ -1927,7 +1895,6 @@ fn workspace_default_features2_2024() {
19271895
.build();
19281896

19291897
p.cargo("check")
1930-
.masquerade_as_nightly_cargo(&["edition2024"])
19311898
.with_status(101)
19321899
.with_stderr_data(str![[r#"
19331900
[ERROR] failed to load manifest for workspace member `[ROOT]/foo/workspace_only`
@@ -1972,14 +1939,12 @@ fn lib_proc_macro2() {
19721939
.run();
19731940
}
19741941

1975-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1942+
#[cargo_test]
19761943
fn lib_proc_macro2_2024() {
19771944
let foo = project()
19781945
.file(
19791946
"Cargo.toml",
19801947
r#"
1981-
cargo-features = ["edition2024"]
1982-
19831948
[package]
19841949
name = "foo"
19851950
version = "0.1.0"
@@ -1992,7 +1957,6 @@ fn lib_proc_macro2_2024() {
19921957
.build();
19931958

19941959
foo.cargo("check")
1995-
.masquerade_as_nightly_cargo(&["edition2024"])
19961960
.with_status(101)
19971961
.with_stderr_data(str![[r#"
19981962
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
@@ -2063,14 +2027,12 @@ fn bin_proc_macro2() {
20632027
.run();
20642028
}
20652029

2066-
#[cargo_test(nightly, reason = "edition2024 is not stable")]
2030+
#[cargo_test]
20672031
fn bin_proc_macro2_2024() {
20682032
let foo = project()
20692033
.file(
20702034
"Cargo.toml",
20712035
r#"
2072-
cargo-features = ["edition2024"]
2073-
20742036
[package]
20752037
name = "foo"
20762038
version = "0.5.0"
@@ -2087,7 +2049,6 @@ fn bin_proc_macro2_2024() {
20872049
.build();
20882050

20892051
foo.cargo("check")
2090-
.masquerade_as_nightly_cargo(&["edition2024"])
20912052
.with_status(101)
20922053
.with_stderr_data(str![[r#"
20932054
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`

0 commit comments

Comments
 (0)