Skip to content

Commit 7ac49a9

Browse files
committed
fix(embedded): Rely on package.publish default for scripts
1 parent bfb5d1d commit 7ac49a9

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/cargo/util/toml/embedded.rs

-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use crate::Config;
66

77
const DEFAULT_EDITION: crate::core::features::Edition =
88
crate::core::features::Edition::LATEST_STABLE;
9-
const DEFAULT_PUBLISH: bool = false;
109
const AUTO_FIELDS: &[&str] = &["autobins", "autoexamples", "autotests", "autobenches"];
1110

1211
pub fn expand_manifest(
@@ -132,9 +131,6 @@ fn expand_manifest_(
132131
package
133132
.entry("build".to_owned())
134133
.or_insert_with(|| toml::Value::Boolean(false));
135-
package
136-
.entry("publish".to_owned())
137-
.or_insert_with(|| toml::Value::Boolean(DEFAULT_PUBLISH));
138134
for field in AUTO_FIELDS {
139135
package
140136
.entry(field.to_owned())
@@ -617,7 +613,6 @@ autotests = false
617613
build = false
618614
edition = "2021"
619615
name = "test-"
620-
publish = false
621616
622617
[profile.release]
623618
strip = true
@@ -646,7 +641,6 @@ autotests = false
646641
build = false
647642
edition = "2021"
648643
name = "test-"
649-
publish = false
650644
651645
[profile.release]
652646
strip = true

src/doc/src/reference/unstable.md

-2
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,6 @@ at the start of the infostring at the top of the file.
12211221

12221222
Inferred / defaulted manifest fields:
12231223
- `package.name = <slugified file stem>`
1224-
- `package.publish = false` to avoid accidental publishes, particularly if we
1225-
later add support for including them in a workspace.
12261224
- `package.edition = <current>` to avoid always having to add an embedded
12271225
manifest at the cost of potentially breaking scripts on rust upgrades
12281226
- Warn when `edition` is unspecified to raise awareness of this

0 commit comments

Comments
 (0)