It was unhappy about the new LICENSE (fuchsia-cprng) but it's the same as the other fuschia crates. Since I don't think this is used at build time but has the same license as the other fuschia crates, I put it in the RUNTIME_LICENSE_PACKAGE_WHITELIST list. I also removed sha1 from that list as it's not used anymore Differential Revision: https://phabricator.services.mozilla.com/D30746
10 lines
223 B
Rust
10 lines
223 B
Rust
extern crate autocfg;
|
|
|
|
fn main() {
|
|
// Normally, cargo will set `OUT_DIR` for build scripts.
|
|
let ac = autocfg::AutoCfg::with_dir("target").unwrap();
|
|
for i in 0..100 {
|
|
ac.emit_rustc_version(1, i);
|
|
}
|
|
}
|