Skip to content

Commit b29e379

Browse files
committed
Adding support for no-default-features to package and publish
1 parent 8c3bf82 commit b29e379

File tree

6 files changed

+103
-17
lines changed

6 files changed

+103
-17
lines changed

src/bin/cargo/commands/package.rs

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ pub fn exec(config: &mut Config, args: &ArgMatches<'_>) -> CliResult {
4545
jobs: args.jobs()?,
4646
features: args._values_of("features"),
4747
all_features: args.is_present("all-features"),
48+
no_default_features: args.is_present("no-default-features"),
4849
},
4950
)?;
5051
Ok(())

src/bin/cargo/commands/publish.rs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub fn exec(config: &mut Config, args: &ArgMatches<'_>) -> CliResult {
4343
registry,
4444
features: args._values_of("features"),
4545
all_features: args.is_present("all-features"),
46+
no_default_features: args.is_present("no-default-features"),
4647
},
4748
)?;
4849
Ok(())

src/cargo/ops/cargo_package.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pub struct PackageOpts<'cfg> {
2828
pub target: Option<String>,
2929
pub features: Vec<String>,
3030
pub all_features: bool,
31+
pub no_default_features: bool,
3132
}
3233

3334
static VCS_INFO_FILE: &'static str = ".cargo_vcs_info.json";
@@ -450,7 +451,7 @@ fn run_verify(ws: &Workspace<'_>, tar: &FileLock, opts: &PackageOpts<'_>) -> Car
450451
config,
451452
build_config: BuildConfig::new(config, opts.jobs, &opts.target, CompileMode::Build)?,
452453
features: opts.features.clone(),
453-
no_default_features: false,
454+
no_default_features: opts.no_default_features,
454455
all_features: opts.all_features,
455456
spec: ops::Packages::Packages(Vec::new()),
456457
filter: ops::CompileFilter::Default {

src/cargo/ops/registry.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ pub struct PublishOpts<'cfg> {
4040
pub dry_run: bool,
4141
pub registry: Option<String>,
4242
pub features: Vec<String>,
43-
pub all_features: bool
43+
pub all_features: bool,
44+
pub no_default_features: bool,
4445
}
4546

4647
pub fn publish(ws: &Workspace<'_>, opts: &PublishOpts<'_>) -> CargoResult<()> {
@@ -86,6 +87,7 @@ pub fn publish(ws: &Workspace<'_>, opts: &PublishOpts<'_>) -> CargoResult<()> {
8687
jobs: opts.jobs,
8788
features: opts.features.clone(),
8889
all_features: opts.all_features,
90+
no_default_features: opts.no_default_features,
8991
},
9092
)?
9193
.unwrap();

tests/testsuite/package.rs

+31
Original file line numberDiff line numberDiff line change
@@ -1358,3 +1358,34 @@ fn package_with_all_features() {
13581358
.with_status(0)
13591359
.run();
13601360
}
1361+
1362+
#[test]
1363+
fn package_no_default_features() {
1364+
let p = project()
1365+
.file(
1366+
"Cargo.toml",
1367+
r#"
1368+
[project]
1369+
name = "foo"
1370+
version = "0.0.1"
1371+
authors = []
1372+
license = "MIT"
1373+
description = "foo"
1374+
1375+
[features]
1376+
default = ["required"]
1377+
required = []
1378+
"#,
1379+
).file(
1380+
"src/main.rs",
1381+
"#[cfg(not(feature = \"required\"))]
1382+
compile_error!(\"This crate requires `required` feature!\");
1383+
fn main() {}",
1384+
).build();
1385+
1386+
p.cargo("package --no-default-features")
1387+
.masquerade_as_nightly_cargo()
1388+
.with_stderr_contains("error: This crate requires `required` feature!")
1389+
.with_status(101)
1390+
.run();
1391+
}

tests/testsuite/publish.rs

+65-15
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ See [..]
3838
[UPLOADING] foo v0.0.1 ([CWD])
3939
",
4040
reg = publish::registry_path().to_str().unwrap()
41-
)).run();
41+
))
42+
.run();
4243

4344
let mut f = File::open(&publish::upload_path().join("api/v1/crates/new")).unwrap();
4445
// Skip the metadata payload and the size of the tarball
@@ -112,7 +113,8 @@ See [..]
112113
[UPLOADING] foo v0.0.1 ([CWD])
113114
",
114115
reg = publish::registry_path().to_str().unwrap()
115-
)).run();
116+
))
117+
.run();
116118

117119
let mut f = File::open(&publish::upload_path().join("api/v1/crates/new")).unwrap();
118120
// Skip the metadata payload and the size of the tarball
@@ -188,7 +190,8 @@ See [..]
188190
[UPLOADING] foo v0.0.1 ([CWD])
189191
",
190192
reg = publish::registry_path().to_str().unwrap()
191-
)).run();
193+
))
194+
.run();
192195

193196
let mut f = File::open(&publish::upload_path().join("api/v1/crates/new")).unwrap();
194197
// Skip the metadata payload and the size of the tarball
@@ -266,7 +269,8 @@ See [..]
266269
[UPLOADING] foo v0.0.1 ([CWD])
267270
",
268271
reg = publish::registry_path().to_str().unwrap()
269-
)).run();
272+
))
273+
.run();
270274

271275
let mut f = File::open(&publish::upload_path().join("api/v1/crates/new")).unwrap();
272276
// Skip the metadata payload and the size of the tarball
@@ -335,7 +339,8 @@ specify a crates.io version as a dependency or pull it into this \
335339
repository and specify it with a path and version\n\
336340
(crate `foo` has repository path `git://path/to/nowhere`)\
337341
",
338-
).run();
342+
)
343+
.run();
339344
}
340345

341346
#[test]
@@ -371,7 +376,8 @@ fn path_dependency_no_version() {
371376
[ERROR] all path dependencies must have a version specified when publishing.
372377
dependency `bar` does not specify a version
373378
",
374-
).run();
379+
)
380+
.run();
375381
}
376382

377383
#[test]
@@ -402,7 +408,8 @@ fn unpublishable_crate() {
402408
[ERROR] some crates cannot be published.
403409
`foo` is marked as unpublishable
404410
",
405-
).run();
411+
)
412+
.run();
406413
}
407414

408415
#[test]
@@ -441,7 +448,8 @@ bar
441448
442449
to proceed despite this, pass the `--allow-dirty` flag
443450
",
444-
).run();
451+
)
452+
.run();
445453
}
446454

447455
#[test]
@@ -555,7 +563,8 @@ fn ignore_when_crate_ignored() {
555563
homepage = "foo"
556564
repository = "foo"
557565
"#,
558-
).nocommit_file("bar/src/main.rs", "fn main() {}");
566+
)
567+
.nocommit_file("bar/src/main.rs", "fn main() {}");
559568
p.cargo("publish")
560569
.cwd(p.root().join("bar"))
561570
.arg("--index")
@@ -583,7 +592,8 @@ fn new_crate_rejected() {
583592
homepage = "foo"
584593
repository = "foo"
585594
"#,
586-
).nocommit_file("src/main.rs", "fn main() {}");
595+
)
596+
.nocommit_file("src/main.rs", "fn main() {}");
587597
p.cargo("publish --index")
588598
.arg(publish::registry().to_string())
589599
.with_status(101)
@@ -623,7 +633,8 @@ See [..]
623633
[UPLOADING] foo v0.0.1 ([CWD])
624634
[WARNING] aborting upload due to dry run
625635
",
626-
).run();
636+
)
637+
.run();
627638

628639
// Ensure the API request wasn't actually made
629640
assert!(!publish::upload_path().join("api/v1/crates/new").exists());
@@ -666,7 +677,8 @@ Caused by:
666677
667678
consider adding `cargo-features = [\"alternative-registries\"]` to the manifest
668679
",
669-
).run();
680+
)
681+
.run();
670682
}
671683

672684
#[test]
@@ -704,7 +716,8 @@ fn registry_not_in_publish_list() {
704716
[ERROR] some crates cannot be published.
705717
`foo` is marked as unpublishable
706718
",
707-
).run();
719+
)
720+
.run();
708721
}
709722

710723
#[test]
@@ -737,7 +750,8 @@ fn publish_empty_list() {
737750
[ERROR] some crates cannot be published.
738751
`foo` is marked as unpublishable
739752
",
740-
).run();
753+
)
754+
.run();
741755
}
742756

743757
#[test]
@@ -801,7 +815,8 @@ fn block_publish_no_registry() {
801815
[ERROR] some crates cannot be published.
802816
`foo` is marked as unpublishable
803817
",
804-
).run();
818+
)
819+
.run();
805820
}
806821

807822
#[test]
@@ -871,3 +886,38 @@ fn publish_with_all_features() {
871886
.with_stderr_contains("[UPLOADING] foo v0.0.1 ([CWD])")
872887
.run();
873888
}
889+
890+
#[test]
891+
fn publish_with_no_default_features() {
892+
publish::setup();
893+
894+
let p = project()
895+
.file(
896+
"Cargo.toml",
897+
r#"
898+
[project]
899+
name = "foo"
900+
version = "0.0.1"
901+
authors = []
902+
license = "MIT"
903+
description = "foo"
904+
905+
[features]
906+
default = ["required"]
907+
required = []
908+
"#,
909+
)
910+
.file(
911+
"src/main.rs",
912+
"#[cfg(not(feature = \"required\"))]
913+
compile_error!(\"This crate requires `required` feature!\");
914+
fn main() {}",
915+
)
916+
.build();
917+
918+
p.cargo("publish --no-default-features --index")
919+
.arg(publish::registry().to_string())
920+
.with_stderr_contains("error: This crate requires `required` feature!")
921+
.with_status(101)
922+
.run();
923+
}

0 commit comments

Comments
 (0)