From 49a0a8ed4fc185eac0fbb99850365f4960016eaf Mon Sep 17 00:00:00 2001 From: Folkert de Vries Date: Mon, 12 Aug 2024 20:20:03 +0200 Subject: [PATCH] fix typo in the s390/s390x inclusion the typo meant that some C files were not included in the build, which caused the published version of this crate to fail for s390x targets --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 441f3a1b..80fe3dce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libz-sys" -version = "1.1.18" +version = "1.1.19" authors = [ "Alex Crichton ", "Josh Triplett ", @@ -30,7 +30,7 @@ include = [ "src/zlib-ng/arch/generic/**.[ch]", "src/zlib-ng/arch/power/**.[ch]", "src/zlib-ng/arch/riscv/**.[ch]", - "src/zlib-ng/arch/s390x/**.[ch]", + "src/zlib-ng/arch/s390/**.[ch]", "src/zlib-ng/arch/x86/**.[ch]", "src/zlib-ng/*.[ch].in", "src/zlib-ng/*.pc.in",