From f515cbed6f9da70abe5e93276807c283408e8b41 Mon Sep 17 00:00:00 2001 From: Filipe Rodrigues Date: Sun, 9 Oct 2022 18:21:06 +0100 Subject: [PATCH] Updated to `rustc 1.66.0-nightly (432abd86f 2022-09-20)`. --- ndsz-fat/src/lib.rs | 1 - ndsz-unnarc/src/main.rs | 2 +- ndsz-unnds/src/main.rs | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ndsz-fat/src/lib.rs b/ndsz-fat/src/lib.rs index f83f810..3149569 100644 --- a/ndsz-fat/src/lib.rs +++ b/ndsz-fat/src/lib.rs @@ -1,7 +1,6 @@ //! `.nds` and `.narc` Fat + Fnt implementation // Features -#![feature(generic_associated_types)] // Modules pub mod dir; diff --git a/ndsz-unnarc/src/main.rs b/ndsz-unnarc/src/main.rs index 9b825ca..ed5d8fd 100644 --- a/ndsz-unnarc/src/main.rs +++ b/ndsz-unnarc/src/main.rs @@ -1,7 +1,7 @@ //! Unpacks a `.narc` // Features -#![feature(generic_associated_types, fs_try_exists)] +#![feature(fs_try_exists)] // Modules mod args; diff --git a/ndsz-unnds/src/main.rs b/ndsz-unnds/src/main.rs index f182751..61e1046 100644 --- a/ndsz-unnds/src/main.rs +++ b/ndsz-unnds/src/main.rs @@ -1,7 +1,7 @@ //! Unpacks a `.nds` // Features -#![feature(generic_associated_types, fs_try_exists)] +#![feature(fs_try_exists)] // Modules mod args;