From 47f2f117f6ff828ff712580fc3bc6135fc67b345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Rakic?= Date: Fri, 14 Jan 2022 13:25:16 +0100 Subject: [PATCH] Update object dependency --- Cargo.lock | 36 ++++++++++++++++++++++++++++++++++-- thorin-bin/Cargo.toml | 2 +- thorin/Cargo.toml | 2 +- 3 files changed, 36 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e835d25..dd049c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,6 +8,17 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + [[package]] name = "ansi_term" version = "0.11.0" @@ -115,6 +126,17 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "getrandom" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + [[package]] name = "gimli" version = "0.26.1" @@ -131,6 +153,9 @@ name = "hashbrown" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash", +] [[package]] name = "heck" @@ -242,12 +267,13 @@ dependencies = [ [[package]] name = "object" -version = "0.27.1" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9" +checksum = "7ce8b38d41f9f3618fc23f908faae61510f8d8ce2d99cbe910641e8f1971f084" dependencies = [ "crc32fast", "flate2", + "hashbrown", "indexmap", "memchr", ] @@ -613,6 +639,12 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + [[package]] name = "winapi" version = "0.3.9" diff --git a/thorin-bin/Cargo.toml b/thorin-bin/Cargo.toml index f540b5b..11738ba 100644 --- a/thorin-bin/Cargo.toml +++ b/thorin-bin/Cargo.toml @@ -24,7 +24,7 @@ tracing-tree = "0.1.10" typed-arena = "2.0.1" [dependencies.object] -version = "0.27.1" +version = "0.28.1" default-features = false features = [ "archive", "read", "write", "compression" ] diff --git a/thorin/Cargo.toml b/thorin/Cargo.toml index 107e013..21f8939 100644 --- a/thorin/Cargo.toml +++ b/thorin/Cargo.toml @@ -23,7 +23,7 @@ default-features = false features = [ "read", "write", "std" ] [dependencies.object] -version = "0.27.1" +version = "0.28.1" default-features = false features = [ "archive", "read", "write", "compression" ]