We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b2cd9 commit ce07b75Copy full SHA for ce07b75
src/cargo/util/config.rs
@@ -46,8 +46,6 @@ pub struct Config {
46
home_path: Filesystem,
47
/// Information about how to write messages to the shell
48
shell: RefCell<Shell>,
49
- /// Information on how to invoke the compiler (rustc)
50
- rustc: LazyCell<Rustc>,
51
/// A collection of configuration options
52
values: LazyCell<HashMap<String, ConfigValue>>,
53
/// The current working directory of cargo
@@ -113,7 +111,6 @@ impl Config {
113
111
Config {
114
112
home_path: Filesystem::new(homedir),
115
shell: RefCell::new(shell),
116
- rustc: LazyCell::new(),
117
cwd,
118
values: LazyCell::new(),
119
cargo_exe: LazyCell::new(),
0 commit comments