mirror of https://github.com/rwf2/Rocket.git
6 lines
129 B
Rust
6 lines
129 B
Rust
|
fn main() {
|
||
|
if let Some(true) = version_check::is_feature_flaggable() {
|
||
|
println!("cargo:rustc-cfg=nightly");
|
||
|
}
|
||
|
}
|