diff --git a/Cargo.lock b/Cargo.lock index cbc031d5afe..3f1a3474390 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "cargo-util-schemas" -version = "0.3.1" +version = "0.4.0" dependencies = [ "semver", "serde", diff --git a/Cargo.toml b/Cargo.toml index 1c30c42a788..6ec6b26af86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ cargo-platform = { path = "crates/cargo-platform", version = "0.1.5" } cargo-test-macro = { version = "0.2.0", path = "crates/cargo-test-macro" } cargo-test-support = { version = "0.2.0", path = "crates/cargo-test-support" } cargo-util = { version = "0.2.9", path = "crates/cargo-util" } -cargo-util-schemas = { version = "0.3.0", path = "crates/cargo-util-schemas" } +cargo-util-schemas = { version = "0.4.0", path = "crates/cargo-util-schemas" } cargo_metadata = "0.18.1" clap = "4.5.4" color-print = "0.3.5" diff --git a/crates/cargo-util-schemas/Cargo.toml b/crates/cargo-util-schemas/Cargo.toml index 1b72fd30bf1..45ab3791b65 100644 --- a/crates/cargo-util-schemas/Cargo.toml +++ b/crates/cargo-util-schemas/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-util-schemas" -version = "0.3.1" +version = "0.4.0" rust-version = "1.77" # MSRV:1 edition.workspace = true license.workspace = true diff --git a/crates/cargo-util-schemas/src/manifest/mod.rs b/crates/cargo-util-schemas/src/manifest/mod.rs index 94013794b8b..4fbdd39212b 100644 --- a/crates/cargo-util-schemas/src/manifest/mod.rs +++ b/crates/cargo-util-schemas/src/manifest/mod.rs @@ -51,7 +51,7 @@ pub struct TomlManifest { pub replace: Option>, pub patch: Option>>, pub workspace: Option, - pub badges: Option, + pub badges: Option>>, pub lints: Option, /// Report unused keys (see also nested `_unused_keys`) @@ -106,12 +106,6 @@ impl TomlManifest { self.features.as_ref() } - pub fn resolved_badges( - &self, - ) -> Result>>, UnresolvedError> { - self.badges.as_ref().map(|l| l.resolved()).transpose() - } - pub fn resolved_lints(&self) -> Result, UnresolvedError> { self.lints.as_ref().map(|l| l.resolved()).transpose() } diff --git a/src/cargo/util/toml/mod.rs b/src/cargo/util/toml/mod.rs index 96720937a92..d89829e0482 100644 --- a/src/cargo/util/toml/mod.rs +++ b/src/cargo/util/toml/mod.rs @@ -451,12 +451,7 @@ fn resolve_toml( resolved_toml.lints = original_toml.lints.clone(); - let resolved_badges = original_toml - .badges - .clone() - .map(|mw| field_inherit_with(mw, "badges", || inherit()?.badges())) - .transpose()?; - resolved_toml.badges = resolved_badges.map(manifest::InheritableField::Value); + resolved_toml.badges = original_toml.badges.clone(); } else { for field in original_toml.requires_package() { bail!("this virtual manifest specifies a `{field}` section, which is not allowed"); @@ -799,7 +794,6 @@ impl InheritableFields { package_field_getter! { // Please keep this list lexicographically ordered. ("authors", authors -> Vec), - ("badges", badges -> BTreeMap>), ("categories", categories -> Vec), ("description", description -> String), ("documentation", documentation -> String), @@ -1340,11 +1334,7 @@ fn to_real_manifest( .expect("previously resolved") .cloned() .unwrap_or_default(), - badges: resolved_toml - .resolved_badges() - .expect("previously resolved") - .cloned() - .unwrap_or_default(), + badges: resolved_toml.badges.clone().unwrap_or_default(), links: resolved_package.links.clone(), rust_version: rust_version.clone(), }; diff --git a/tests/testsuite/inheritable_workspace_fields.rs b/tests/testsuite/inheritable_workspace_fields.rs index b733000a856..a84d4cdf4df 100644 --- a/tests/testsuite/inheritable_workspace_fields.rs +++ b/tests/testsuite/inheritable_workspace_fields.rs @@ -30,9 +30,6 @@ fn permit_additional_workspace_fields() { exclude = ["foo.txt"] include = ["bar.txt", "**/*.rs", "Cargo.toml", "LICENSE", "README.md"] - [workspace.package.badges] - gitlab = { repository = "https://gitlab.com/rust-lang/rust", branch = "master" } - [workspace.dependencies] dep = "0.1" "#, @@ -117,8 +114,6 @@ fn inherit_own_workspace_fields() { .file( "Cargo.toml", r#" - badges.workspace = true - [package] name = "foo" version.workspace = true @@ -153,8 +148,6 @@ fn inherit_own_workspace_fields() { rust-version = "1.60" exclude = ["foo.txt"] include = ["bar.txt", "**/*.rs", "Cargo.toml"] - [workspace.package.badges] - gitlab = { repository = "https://gitlab.com/rust-lang/rust", branch = "master" } "#, ) .file("src/main.rs", "fn main() {}") @@ -186,9 +179,7 @@ You may press ctrl-c to skip waiting; the crate should be available shortly. r#" { "authors": ["Rustaceans"], - "badges": { - "gitlab": { "branch": "master", "repository": "https://gitlab.com/rust-lang/rust" } - }, + "badges": {}, "categories": ["development-tools"], "deps": [], "description": "This is a crate", @@ -240,10 +231,6 @@ keywords = ["cli"] categories = ["development-tools"] license = "MIT" repository = "https://github.com/example/example" - -[badges.gitlab] -branch = "master" -repository = "https://gitlab.com/rust-lang/rust" "#, cargo::core::manifest::MANIFEST_PREAMBLE ), @@ -665,15 +652,12 @@ fn inherit_workspace_fields() { rust-version = "1.60" exclude = ["foo.txt"] include = ["bar.txt", "**/*.rs", "Cargo.toml", "LICENSE", "README.md"] - [workspace.package.badges] - gitlab = { repository = "https://gitlab.com/rust-lang/rust", branch = "master" } "#, ) .file("src/main.rs", "fn main() {}") .file( "bar/Cargo.toml", r#" - badges.workspace = true [package] name = "bar" workspace = ".." @@ -731,9 +715,7 @@ You may press ctrl-c to skip waiting; the crate should be available shortly. r#" { "authors": ["Rustaceans"], - "badges": { - "gitlab": { "branch": "master", "repository": "https://gitlab.com/rust-lang/rust" } - }, + "badges": {}, "categories": ["development-tools"], "deps": [], "description": "This is a crate", @@ -791,10 +773,6 @@ categories = ["development-tools"] license = "MIT" license-file = "LICENSE" repository = "https://github.com/example/example" - -[badges.gitlab] -branch = "master" -repository = "https://gitlab.com/rust-lang/rust" "#, cargo::core::manifest::MANIFEST_PREAMBLE ), @@ -1715,8 +1693,6 @@ fn warn_inherit_unused_manifest_key_package() { .file( "Cargo.toml", r#" - badges = { workspace = true, xyz = "abc"} - [workspace] members = [] [workspace.package] @@ -1734,8 +1710,6 @@ fn warn_inherit_unused_manifest_key_package() { rust-version = "1.60" exclude = ["foo.txt"] include = ["bar.txt", "**/*.rs", "Cargo.toml"] - [workspace.package.badges] - gitlab = { repository = "https://gitlab.com/rust-lang/rust", branch = "master" } [package] name = "bar"