Skip to content

Commit 89e0fcc

Browse files
mtb0x1ivanitskiy
authored andcommitted
fix(#41): zlib version update
1 parent 9ce7895 commit 89e0fcc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In short, this SDK allows writing NGINX modules using the Rust language.
1818

1919
NGINX modules can be built against a particular version of NGINX. The following environment variables can be used to specify a particular version of NGINX or an NGINX dependency:
2020

21-
* `ZLIB_VERSION` (default 1.2.13) -
21+
* `ZLIB_VERSION` (default 1.3) -
2222
* `PCRE2_VERSION` (default 10.42)
2323
* `OPENSSL_VERSION` (default 3.0.7)
2424
* `NGX_VERSION` (default 1.23.3) - NGINX OSS version

nginx-sys/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use tar::Archive;
1515
use which::which;
1616

1717
/// The default version of zlib to use if the `ZLIB_VERSION` environment variable is not present
18-
const ZLIB_DEFAULT_VERSION: &str = "1.2.13";
18+
const ZLIB_DEFAULT_VERSION: &str = "1.3";
1919
const ZLIB_GPG_SERVER_AND_KEY_ID: (&str, &str) = ("keyserver.ubuntu.com", "783FCD8E58BCAFBA");
2020
const ZLIB_DOWNLOAD_URL_PREFIX: &str = "https://www.zlib.net";
2121
/// The default version of pcre2 to use if the `PCRE2_VERSION` environment variable is not present

0 commit comments

Comments
 (0)