Skip to content

Commit 343ca58

Browse files
committed
fix: Set MSRV for internal packages
For now, I'm punting on packages we generally expect others to use
1 parent 50ba4bf commit 343ca58

File tree

14 files changed

+17
-4
lines changed

14 files changed

+17
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

1313
[workspace.package]
14+
rust-version = "1.71.0"
1415
edition = "2021"
1516
license = "MIT OR Apache-2.0"
1617

benches/benchsuite/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "benchsuite"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
homepage = "https://github.com/rust-lang/cargo"

benches/capture/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "capture"
33
version = "0.1.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
description = "Tool for capturing a real-world workspace for benchmarking."

crates/cargo-test-macro/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "cargo-test-macro"
33
version = "0.1.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
homepage = "https://github.com/rust-lang/cargo"

crates/cargo-test-support/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "cargo-test-support"
33
version = "0.1.0"
4+
rust-version.workspace = true
45
license.workspace = true
56
edition.workspace = true
67
publish = false

crates/cargo-util/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "cargo-util"
3-
version = "0.2.6"
3+
version = "0.2.7"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
homepage = "https://github.com/rust-lang/cargo"

crates/crates-io/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "crates-io"
3-
version = "0.38.0"
3+
version = "0.38.1"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
repository = "https://github.com/rust-lang/cargo"

crates/mdman/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "mdman"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
license.workspace = true
67
description = "Creates a man page page from markdown."

crates/resolver-tests/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "resolver-tests"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
publish = false
67

crates/semver-check/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "semver-check"
33
version = "0.0.0"
44
authors = ["Eric Huss"]
5+
rust-version.workspace = true
56
edition.workspace = true
67
publish = false
78

crates/xtask-build-man/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "xtask-build-man"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
publish = false
67

crates/xtask-bump-check/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "xtask-bump-check"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
publish = false
67

crates/xtask-stale-label/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "xtask-stale-label"
33
version = "0.0.0"
4+
rust-version.workspace = true
45
edition.workspace = true
56
publish = false
67

0 commit comments

Comments
 (0)