mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-05 02:39:10 +02:00
This updates memoffset to 0.8 and nix to 0.26. Differential Revision: https://phabricator.services.mozilla.com/D174055
25 lines
685 B
Rust
25 lines
685 B
Rust
extern crate autocfg;
|
|
|
|
fn main() {
|
|
let ac = autocfg::new();
|
|
|
|
// Check for a minimum version for a few features
|
|
if ac.probe_rustc_version(1, 20) {
|
|
println!("cargo:rustc-cfg=tuple_ty");
|
|
}
|
|
if ac.probe_rustc_version(1, 31) {
|
|
println!("cargo:rustc-cfg=allow_clippy");
|
|
}
|
|
if ac.probe_rustc_version(1, 36) {
|
|
println!("cargo:rustc-cfg=maybe_uninit");
|
|
}
|
|
if ac.probe_rustc_version(1, 40) {
|
|
println!("cargo:rustc-cfg=doctests");
|
|
}
|
|
if ac.probe_rustc_version(1, 51) {
|
|
println!("cargo:rustc-cfg=raw_ref_macros");
|
|
}
|
|
if ac.probe_rustc_version(1, 65) {
|
|
println!("cargo:rustc-cfg=stable_const");
|
|
}
|
|
}
|