Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Apr 24, 2024
1 parent ef5d9f1 commit efb96d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arcdps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde = { version = "1.0.160", features = ["derive"], optional = true }
strum = { version = "0.26.1", features = ["derive"], optional = true }

[dependencies.windows]
version = "0.52.0"
version = "0.56.0"
features = [
"System",
"Win32_Foundation",
Expand Down
2 changes: 1 addition & 1 deletion evtc_parse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ evtc = { path = "../evtc" }
byteorder = "1.4.3"
serde = { version = "1.0.160", features = ["derive"], optional = true }
thiserror = "1.0.38"
zip = { version = "0.6.4", optional = true }
zip = { version = "1.1.1", optional = true }

[features]
default = ["zevtc"]
Expand Down
4 changes: 1 addition & 3 deletions evtc_parse/src/zip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ impl From<ZipError> for ParseError {
fn from(err: ZipError) -> Self {
match err {
ZipError::Io(io) => Self::IoError(io),
ZipError::InvalidArchive(_)
| ZipError::UnsupportedArchive(_)
| ZipError::FileNotFound => Self::NotEvtc,
_ => Self::NotEvtc,
}
}
}

0 comments on commit efb96d7

Please sign in to comment.