Fix daedalus NeoForge (#5713)

* Support NeoForge version for year-based Minecraft versions

* Run on CI

* Fix

* Fix branch

* Undo branch switch
This commit is contained in:
François-Xavier Talbot
2026-03-30 13:53:29 -04:00
committed by GitHub
parent 4cd6c1a72d
commit 90deb7310e
2 changed files with 30 additions and 8 deletions

View File

@@ -33,6 +33,8 @@ pub enum ErrorKind {
Tracing(#[from] tracing::subscriber::SetGlobalDefaultError),
#[error("Zip error: {0}")]
Zip(#[from] async_zip::error::ZipError),
#[error("Failed to parse an integer: {0}")]
ParseIntError(#[from] std::num::ParseIntError),
}
#[derive(Debug)]