@@ -31,6 +31,7 @@ pub struct Options {
31
31
flag_locked : bool ,
32
32
flag_frozen : bool ,
33
33
flag_all : bool ,
34
+ flag_exclude : Vec < String > ,
34
35
}
35
36
36
37
pub const USAGE : & ' static str = "
@@ -43,6 +44,7 @@ Options:
43
44
-h, --help Print this message
44
45
-p SPEC, --package SPEC ... Package to build
45
46
--all Build all packages in the workspace
47
+ --exclude SPEC ... Exclude packages from the build
46
48
-j N, --jobs N Number of parallel jobs, defaults to # of CPUs
47
49
--lib Build only this package's library
48
50
--bin NAME Build only the specified binary
@@ -73,6 +75,7 @@ current package is built. For more information on SPEC and its format, see the
73
75
74
76
All packages in the workspace are built if the `--all` flag is supplied. The
75
77
`--all` flag may be supplied in the presence of a virtual manifest.
78
+ Note that `--exclude` has to be specified in conjunction with the `--all` flag.
76
79
77
80
Compilation can be configured via the use of profiles which are configured in
78
81
the manifest. The default profile for this command is `dev`, but passing
@@ -90,11 +93,9 @@ pub fn execute(options: Options, config: &Config) -> CliResult {
90
93
91
94
let root = find_root_manifest_for_wd ( options. flag_manifest_path , config. cwd ( ) ) ?;
92
95
93
- let spec = if options. flag_all {
94
- Packages :: All
95
- } else {
96
- Packages :: Packages ( & options. flag_package )
97
- } ;
96
+ let spec = Packages :: from_flags ( options. flag_all ,
97
+ & options. flag_exclude ,
98
+ & options. flag_package ) ?;
98
99
99
100
let opts = CompileOptions {
100
101
config : config,
0 commit comments