switch from nightly to stable

main
znpra 1 year ago
parent d9d1371b24
commit 9144989eb0

@ -1 +0,0 @@
nightly

@ -111,8 +111,11 @@ impl Song {
.send()?
.text()?
.split("~|~")
.array_chunks()
.try_for_each(|[id, value]| -> Result<(), SongRequestError> {
.chunks(2)
.into_iter()
.try_for_each(|mut chunk| -> Result<(), SongRequestError> {
let id = chunk.next().unwrap();
let value = chunk.next().unwrap();
out.0[id.parse::<usize>()? - 1] = Some(value.into());
Ok(())
})

@ -1,4 +1,3 @@
#![feature(iter_array_chunks)]
//#![warn(clippy::all, clippy::pedantic, clippy::nursery)]
#![allow(dead_code)]

Loading…
Cancel
Save