1
+ use std:: iter:: FromIterator ;
2
+
1
3
use cargo:: core:: Workspace ;
2
4
use cargo:: ops:: { self , MessageFormat , Packages } ;
3
5
use cargo:: util:: { CliResult , CliError , Config , Human } ;
@@ -7,6 +9,7 @@ use cargo::util::important_paths::{find_root_manifest_for_wd};
7
9
pub struct Options {
8
10
flag_bin : Option < String > ,
9
11
flag_example : Option < String > ,
12
+ flag_package : Option < String > ,
10
13
flag_jobs : Option < u32 > ,
11
14
flag_features : Vec < String > ,
12
15
flag_all_features : bool ,
@@ -30,22 +33,23 @@ Usage:
30
33
cargo run [options] [--] [<args>...]
31
34
32
35
Options:
33
- -h, --help Print this message
34
- --bin NAME Name of the bin target to run
35
- --example NAME Name of the example target to run
36
- -j N, --jobs N Number of parallel jobs, defaults to # of CPUs
37
- --release Build artifacts in release mode, with optimizations
38
- --features FEATURES Space-separated list of features to also build
39
- --all-features Build all available features
40
- --no-default-features Do not build the `default` feature
41
- --target TRIPLE Build for the target triple
42
- --manifest-path PATH Path to the manifest to execute
43
- -v, --verbose ... Use verbose output (-vv very verbose/build.rs output)
44
- -q, --quiet No output printed to stdout
45
- --color WHEN Coloring: auto, always, never
46
- --message-format FMT Error format: human, json [default: human]
47
- --frozen Require Cargo.lock and cache are up to date
48
- --locked Require Cargo.lock is up to date
36
+ -h, --help Print this message
37
+ --bin NAME Name of the bin target to run
38
+ --example NAME Name of the example target to run
39
+ -p SPEC, --package SPEC Package with the target to run
40
+ -j N, --jobs N Number of parallel jobs, defaults to # of CPUs
41
+ --release Build artifacts in release mode, with optimizations
42
+ --features FEATURES Space-separated list of features to also build
43
+ --all-features Build all available features
44
+ --no-default-features Do not build the `default` feature
45
+ --target TRIPLE Build for the target triple
46
+ --manifest-path PATH Path to the manifest to execute
47
+ -v, --verbose ... Use verbose output (-vv very verbose/build.rs output)
48
+ -q, --quiet No output printed to stdout
49
+ --color WHEN Coloring: auto, always, never
50
+ --message-format FMT Error format: human, json [default: human]
51
+ --frozen Require Cargo.lock and cache are up to date
52
+ --locked Require Cargo.lock is up to date
49
53
50
54
If neither `--bin` nor `--example` are given, then if the project only has one
51
55
bin target it will be run. Otherwise `--bin` specifies the bin target to run,
@@ -74,14 +78,17 @@ pub fn execute(options: Options, config: &Config) -> CliResult {
74
78
examples. push ( s) ;
75
79
}
76
80
81
+ let packages = Vec :: from_iter ( options. flag_package . iter ( ) . cloned ( ) ) ;
82
+ let spec = Packages :: Packages ( & packages) ;
83
+
77
84
let compile_opts = ops:: CompileOptions {
78
85
config : config,
79
86
jobs : options. flag_jobs ,
80
87
target : options. flag_target . as_ref ( ) . map ( |t| & t[ ..] ) ,
81
88
features : & options. flag_features ,
82
89
all_features : options. flag_all_features ,
83
90
no_default_features : options. flag_no_default_features ,
84
- spec : Packages :: Packages ( & [ ] ) ,
91
+ spec : spec ,
85
92
release : options. flag_release ,
86
93
mode : ops:: CompileMode :: Build ,
87
94
filter : if examples. is_empty ( ) && bins. is_empty ( ) {
0 commit comments