Merge branch 'master' into warnOnDeprecatedFeature
This commit is contained in:
commit
6729fc9173
6 changed files with 39 additions and 35 deletions
52
.github/workflows/ci.yaml
vendored
52
.github/workflows/ci.yaml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
push:
|
push:
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- 'release-plz-**'
|
- 'release-plz-**'
|
||||||
- 'dependabot/**'
|
- 'gh-readonly-queue/**'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
merge_group:
|
merge_group:
|
||||||
types: [checks_requested]
|
types: [checks_requested]
|
||||||
|
@ -17,6 +17,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||||
|
@ -57,7 +58,8 @@ jobs:
|
||||||
command: test
|
command: test
|
||||||
args: --all --no-default-features
|
args: --all --no-default-features
|
||||||
|
|
||||||
clippy:
|
style_and_docs:
|
||||||
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -68,34 +70,22 @@ jobs:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
components: clippy
|
components: rustfmt, clippy
|
||||||
|
- name: fmt
|
||||||
|
run: cargo fmt --all -- --check
|
||||||
- name: clippy
|
- name: clippy
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets --all-features -- -D warnings
|
args: --all-targets --all-features -- -D warnings
|
||||||
|
|
||||||
check_fmt_and_docs:
|
|
||||||
name: Checking fmt and docs
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@master
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: nightly
|
|
||||||
components: rustfmt, clippy
|
|
||||||
override: true
|
|
||||||
|
|
||||||
- name: fmt
|
|
||||||
run: cargo fmt --all -- --check
|
|
||||||
|
|
||||||
- name: Docs
|
- name: Docs
|
||||||
run: cargo doc --no-deps
|
run: cargo doc --no-deps
|
||||||
|
|
||||||
fuzz_read:
|
fuzz_read:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build_and_test
|
||||||
|
- style_and_docs
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
|
@ -113,7 +103,7 @@ jobs:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
args: build --all-features fuzz_read
|
args: build --all-features fuzz_read
|
||||||
- name: run fuzz
|
- name: run fuzz
|
||||||
timeout-minutes: 181
|
timeout-minutes: 331
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
|
@ -140,7 +130,9 @@ jobs:
|
||||||
|
|
||||||
fuzz_read_with_no_features:
|
fuzz_read_with_no_features:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build_and_test
|
||||||
|
- style_and_docs
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
|
@ -158,11 +150,11 @@ jobs:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
args: build --no-default-features fuzz_read
|
args: build --no-default-features fuzz_read
|
||||||
- name: run fuzz
|
- name: run fuzz
|
||||||
timeout-minutes: 181
|
timeout-minutes: 331
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
args: run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=50000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict
|
args: run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=40000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict
|
||||||
- name: Upload any failure inputs
|
- name: Upload any failure inputs
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
@ -185,7 +177,9 @@ jobs:
|
||||||
|
|
||||||
fuzz_write:
|
fuzz_write:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build_and_test
|
||||||
|
- style_and_docs
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
|
@ -203,7 +197,7 @@ jobs:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
args: build --all-features fuzz_write
|
args: build --all-features fuzz_write
|
||||||
- name: run fuzz
|
- name: run fuzz
|
||||||
timeout-minutes: 181
|
timeout-minutes: 331
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
|
@ -230,7 +224,9 @@ jobs:
|
||||||
|
|
||||||
fuzz_write_with_no_features:
|
fuzz_write_with_no_features:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build_and_test
|
||||||
|
- style_and_docs
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
|
@ -248,7 +244,7 @@ jobs:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
args: build --no-default-features fuzz_write
|
args: build --no-default-features fuzz_write
|
||||||
- name: run fuzz
|
- name: run fuzz
|
||||||
timeout-minutes: 181
|
timeout-minutes: 331
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: fuzz
|
command: fuzz
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zip"
|
name = "zip"
|
||||||
version = "1.1.2"
|
version = "1.1.3"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathijs van de Nes <git@mathijs.vd-nes.nl>",
|
"Mathijs van de Nes <git@mathijs.vd-nes.nl>",
|
||||||
"Marli Frost <marli@frost.red>",
|
"Marli Frost <marli@frost.red>",
|
||||||
|
|
|
@ -11,7 +11,7 @@ Info
|
||||||
|
|
||||||
|
|
||||||
A zip library for rust which supports reading and writing of simple ZIP files. Formerly hosted at
|
A zip library for rust which supports reading and writing of simple ZIP files. Formerly hosted at
|
||||||
https://github.com/zip-rs/zip.
|
https://github.com/zip-rs/zip2.
|
||||||
|
|
||||||
Supported compression formats:
|
Supported compression formats:
|
||||||
|
|
||||||
|
|
|
@ -558,7 +558,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
||||||
|
|
||||||
let outpath = directory.as_ref().join(filepath);
|
let outpath = directory.as_ref().join(filepath);
|
||||||
|
|
||||||
if file.name().ends_with('/') {
|
if file.is_dir() {
|
||||||
fs::create_dir_all(&outpath)?;
|
fs::create_dir_all(&outpath)?;
|
||||||
} else {
|
} else {
|
||||||
if let Some(p) = outpath.parent() {
|
if let Some(p) = outpath.parent() {
|
||||||
|
|
|
@ -67,7 +67,7 @@ impl<R: Read> ZipStreamReader<R> {
|
||||||
|
|
||||||
let outpath = self.0.join(filepath);
|
let outpath = self.0.join(filepath);
|
||||||
|
|
||||||
if file.name().ends_with('/') {
|
if file.is_dir() {
|
||||||
fs::create_dir_all(&outpath)?;
|
fs::create_dir_all(&outpath)?;
|
||||||
} else {
|
} else {
|
||||||
if let Some(p) = outpath.parent() {
|
if let Some(p) = outpath.parent() {
|
||||||
|
|
|
@ -79,7 +79,15 @@ impl ZipError {
|
||||||
|
|
||||||
impl From<ZipError> for io::Error {
|
impl From<ZipError> for io::Error {
|
||||||
fn from(err: ZipError) -> io::Error {
|
fn from(err: ZipError) -> io::Error {
|
||||||
io::Error::new(io::ErrorKind::Other, err)
|
let kind = match &err {
|
||||||
|
ZipError::Io(err) => err.kind(),
|
||||||
|
ZipError::InvalidArchive(_) => io::ErrorKind::InvalidData,
|
||||||
|
ZipError::UnsupportedArchive(_) => io::ErrorKind::Unsupported,
|
||||||
|
ZipError::FileNotFound => io::ErrorKind::NotFound,
|
||||||
|
ZipError::InvalidPassword => io::ErrorKind::InvalidInput,
|
||||||
|
};
|
||||||
|
|
||||||
|
io::Error::new(kind, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue