We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71cd3f0 commit b79ae02Copy full SHA for b79ae02
azalea/build.rs
@@ -0,0 +1,8 @@
1
+use std::env;
2
+
3
+fn main() {
4
+ let rust_toolchain = env::var("RUSTUP_TOOLCHAIN").unwrap();
5
+ if rust_toolchain.starts_with("stable") {
6
+ panic!("Azalea currently requires nightly Rust. You can use `rustup override set nightly` to set the toolchain for this directory.");
7
+ }
8
+}
0 commit comments