diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-03-27 21:33:07 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-27 16:03:07 +0000 |
| commit | b2fd0742bdfe7b013ba7006fa6737b5f1c43428c (patch) | |
| tree | dc24333151c4facf49d65022a079acc7995ebc5b /Cargo.lock | |
| parent | 9ebce6e725dd0b33aea20025995fb1e790b92df5 (diff) | |
feat: port node:zlib to rust (#18291)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 0171c0c5c..019af1b6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1150,6 +1150,7 @@ dependencies = [ "hex", "idna 0.3.0", "indexmap", + "libz-sys", "md-5", "md4", "once_cell", @@ -2583,6 +2584,18 @@ dependencies = [ ] [[package]] +name = "libz-sys" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] name = "linked-hash-map" version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" |
