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 26e464f commit 067520cCopy full SHA for 067520c
src/lib.rs
@@ -215,8 +215,8 @@ pub fn find_sysroot() -> PathBuf {
215
pub fn check_rust_version(input: &Input) {
216
let rustc_version = rustc_version::version_meta().unwrap();
217
218
- // If the channel isn't nightly, we can't make use the required unstable tools.
219
- // However, `cargo new` doesn't have these requirements.
+ // If the channel isn't nightly, we can't make use of the required unstable tools.
+ // However, `cargo 3ds new` doesn't have these requirements.
220
if rustc_version.channel > Channel::Nightly && input.cmd.should_compile() {
221
eprintln!("building with cargo-3ds requires a nightly rustc version.");
222
eprintln!(
0 commit comments