Skip to content

Commit ddc81be

Browse files
committed
Add support for Rust edition "2024"
1 parent f7a67c2 commit ddc81be

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Please make sure to add your changes to the appropriate categories:
2020

2121
### Added
2222

23-
- n/a
23+
- Added support for Rust edition "2024"
2424

2525
### Changed
2626

2727
- Updated dependencies:
2828
- `thiserror` from `1.0.58` to `2.0.0`
29-
- `cargo_metadata` from `0.18.1` to `0.19.0`
29+
- `cargo_metadata` from `0.18.1` to `0.19.2`
3030
- `cargo_toml` from `0.20.0` to `0.21.0`
3131

3232
### Deprecated

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ version = "0.9.2"
2323
[dependencies]
2424
base62 = "2.0.2"
2525
basic-toml = "0.1"
26-
cargo_metadata = "0.19.0"
26+
cargo_metadata = "0.19.2"
2727
cargo_toml = "0.21.0"
2828
diff = "0.1"
2929
glob = "0.3"

src/manifest.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ where
3333
SourceEdition::E2015 => Inheritable::Set(Edition::E2015),
3434
SourceEdition::E2018 => Inheritable::Set(Edition::E2018),
3535
SourceEdition::E2021 => Inheritable::Set(Edition::E2021),
36+
SourceEdition::E2024 => Inheritable::Set(Edition::E2024),
3637
edition => {
3738
return Err(Error::UnsupportedRustEdition {
3839
edition: edition.to_string(),

0 commit comments

Comments
 (0)