Merge pull request #279 from dtolnay/depinfo

Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info
This commit is contained in:
David Tolnay 2024-01-01 20:21:53 -08:00 committed by GitHub
commit 4619db8644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,3 +27,6 @@ impl Error for MyError {
request.provide_ref(&self.0);
}
}
// Include in sccache cache key.
const _: Option<&str> = option_env!("RUSTC_BOOTSTRAP");