mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-17 19:21:28 +01:00
10 lines
222 B
Rust
10 lines
222 B
Rust
extern crate rustc_version;
|
|
|
|
use rustc_version::{version_meta, Channel};
|
|
|
|
fn main() {
|
|
if version_meta().expect("nightly check failed").channel == Channel::Nightly {
|
|
println!("cargo:rustc-cfg=nightly");
|
|
}
|
|
}
|