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;