summaryrefslogtreecommitdiff
path: root/rust/Cargo.lock
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2024-10-08 14:22:06 -0400
committerJosh Ferrell <josh@vector35.com>2024-10-08 14:22:06 -0400
commitd6946973f49e6d6b181ed0efb6d40c23c8afdb7d (patch)
tree3fa1a1af0a44aaf5fead1cc38a69b995d91f6d9c /rust/Cargo.lock
parenta81692cde97ba3a0b51b5fc43d2680a973a0e329 (diff)
Add support for zstd compressed DWARF, simplify handling of zlib compressed DWARF, improve DWARF error handling
Diffstat (limited to 'rust/Cargo.lock')
-rw-r--r--rust/Cargo.lock56
1 files changed, 56 insertions, 0 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index e922d98e..2484a7ba 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -171,6 +171,17 @@ dependencies = [
]
[[package]]
+name = "cc"
+version = "1.1.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1"
+dependencies = [
+ "jobserver",
+ "libc",
+ "shlex",
+]
+
+[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -361,6 +372,8 @@ version = "0.1.0"
dependencies = [
"binaryninja",
"gimli",
+ "thiserror",
+ "zstd",
]
[[package]]
@@ -532,6 +545,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
+name = "jobserver"
+version = "0.1.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
+dependencies = [
+ "libc",
+]
+
+[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -764,6 +786,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
[[package]]
+name = "pkg-config"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
+
+[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1214,3 +1242,31 @@ dependencies = [
"quote",
"syn 2.0.52",
]
+
+[[package]]
+name = "zstd"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
+dependencies = [
+ "zstd-safe",
+]
+
+[[package]]
+name = "zstd-safe"
+version = "7.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
+dependencies = [
+ "zstd-sys",
+]
+
+[[package]]
+name = "zstd-sys"
+version = "2.0.13+zstd.1.5.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
+dependencies = [
+ "cc",
+ "pkg-config",
+]