Skip to content

Commit

Permalink
Replace zip with zip_next (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Apr 24, 2024
1 parent 4b32ba9 commit 4d798bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utoipa-swagger-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ features = ["actix-web", "axum", "rocket"]
rustdoc-args = ["--cfg", "doc_cfg"]

[build-dependencies]
zip = { version = "0.6", default-features = false, features = ["deflate"] }
zip_next = { version = "1.0", default-features = false, features = ["deflate"] }
regex = "1.7"
reqwest = { version = "0.11", features = ["blocking"] }
2 changes: 1 addition & 1 deletion utoipa-swagger-ui/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{
};

use regex::Regex;
use zip::{result::ZipError, ZipArchive};
use zip_next::{result::ZipError, ZipArchive};

/// the following env variables control the build process:
/// 1. SWAGGER_UI_DOWNLOAD_URL:
Expand Down

0 comments on commit 4d798bc

Please sign in to comment.