We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667bb26 commit c6f5afdCopy full SHA for c6f5afd
src/args.rs
@@ -173,18 +173,10 @@ impl Args {
173
&self.manifest_path
174
}
175
176
- pub fn bin_name(&self) -> &Option<String> {
177
- &self.bin_name
178
- }
179
-
180
pub fn target(&self) -> &Option<String> {
181
&self.target
182
183
184
- pub fn release(&self) -> bool {
185
- self.release
186
187
188
pub fn set_target(&mut self, target: String) {
189
assert!(self.target.is_none());
190
self.target = Some(target.clone());
src/lib.rs
@@ -1,8 +1,8 @@
1
use args::{Args, RunnerArgs};
2
use std::{fmt, process};
3
4
-pub mod args;
5
pub mod builder;
+mod args;
6
pub mod config;
7
pub mod help;
8
0 commit comments