Skip to content

Commit c6c1df4

Browse files
committed
chore: Make N-2 the default MSRV
We likely don't want to release these packages every 6 months just for an MSRV bump. By moving the MSRV out of the package, `cargo bump-check` will ignore the MSRV bump. Inspired by #13266
1 parent b291f42 commit c6c1df4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = [
1111
]
1212

1313
[workspace.package]
14-
rust-version = "1.75.0" # MSRV:1
14+
rust-version = "1.73" # MSRV:3
1515
edition = "2021"
1616
license = "MIT OR Apache-2.0"
1717
homepage = "https://github.com/rust-lang/cargo"

crates/cargo-platform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cargo-platform"
33
version = "0.1.8"
44
edition.workspace = true
55
license.workspace = true
6-
rust-version = "1.73" # MSRV:3
6+
rust-version.workspace = true
77
homepage.workspace = true
88
repository.workspace = true
99
documentation = "https://docs.rs/cargo-platform"

crates/home/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "home"
33
version = "0.5.11"
44
authors = ["Brian Anderson <[email protected]>"]
5-
rust-version = "1.73" # MSRV:3
5+
rust-version.workspace = true
66
documentation = "https://docs.rs/home"
77
edition.workspace = true
88
include = [

crates/rustfix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"Pascal Hertleif <[email protected]>",
66
"Oliver Schneider <[email protected]>",
77
]
8-
rust-version = "1.73" # MSRV:3
8+
rust-version.workspace = true
99
edition.workspace = true
1010
license.workspace = true
1111
homepage.workspace = true

credential/cargo-credential-1password/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-credential-1password"
33
version = "0.4.4"
4-
rust-version = "1.73" # MSRV:3
4+
rust-version.workspace = true
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

credential/cargo-credential/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-credential"
33
version = "0.4.4"
4-
rust-version = "1.73" # MSRV:3
4+
rust-version.workspace = true
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

0 commit comments

Comments
 (0)