mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
fix: Set MSRV for internal packages
For now, I'm punting on packages we generally expect others to use
This commit is contained in:
parent
0c51462864
commit
7a65c826a0
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -427,7 +427,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cargo-util"
|
name = "cargo-util"
|
||||||
version = "0.2.6"
|
version = "0.2.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"core-foundation",
|
"core-foundation",
|
||||||
@ -588,7 +588,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "crates-io"
|
name = "crates-io"
|
||||||
version = "0.38.0"
|
version = "0.38.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"curl",
|
"curl",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
|
@ -11,6 +11,7 @@ exclude = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
|
rust-version = "1.71.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "benchsuite"
|
name = "benchsuite"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
homepage = "https://github.com/rust-lang/cargo"
|
homepage = "https://github.com/rust-lang/cargo"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "capture"
|
name = "capture"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
description = "Tool for capturing a real-world workspace for benchmarking."
|
description = "Tool for capturing a real-world workspace for benchmarking."
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cargo-test-macro"
|
name = "cargo-test-macro"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
homepage = "https://github.com/rust-lang/cargo"
|
homepage = "https://github.com/rust-lang/cargo"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cargo-test-support"
|
name = "cargo-test-support"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
rust-version.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cargo-util"
|
name = "cargo-util"
|
||||||
version = "0.2.6"
|
version = "0.2.7"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
homepage = "https://github.com/rust-lang/cargo"
|
homepage = "https://github.com/rust-lang/cargo"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crates-io"
|
name = "crates-io"
|
||||||
version = "0.38.0"
|
version = "0.38.1"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
repository = "https://github.com/rust-lang/cargo"
|
repository = "https://github.com/rust-lang/cargo"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "mdman"
|
name = "mdman"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
description = "Creates a man page page from markdown."
|
description = "Creates a man page page from markdown."
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "resolver-tests"
|
name = "resolver-tests"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
name = "semver-check"
|
name = "semver-check"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
authors = ["Eric Huss"]
|
authors = ["Eric Huss"]
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "xtask-build-man"
|
name = "xtask-build-man"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "xtask-bump-check"
|
name = "xtask-bump-check"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "xtask-stale-label"
|
name = "xtask-stale-label"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user