summaryrefslogtreecommitdiff
path: root/rust/Cargo.lock
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2024-04-22 17:37:18 -0400
committerGlenn Smith <glenn@vector35.com>2024-04-22 17:39:12 -0400
commit8534476934065104161886820729515240153914 (patch)
tree75264a38678c8d74798b9a72db1f460371f17145 /rust/Cargo.lock
parent72cb4b08ac8f7c9261867cd6c0b18c054d73b96e (diff)
Public release of PDB parser plugin
Diffstat (limited to 'rust/Cargo.lock')
-rw-r--r--rust/Cargo.lock64
1 files changed, 63 insertions, 1 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index b57255e0..e81920f9 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -78,6 +78,12 @@ dependencies = [
]
[[package]]
+name = "anyhow"
+version = "1.0.82"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
+
+[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -144,6 +150,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
+name = "cab"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae6b4de23c7d39c0631fd3cc952d87951c86c75a13812d7247cb7a896e7b3551"
+dependencies = [
+ "byteorder",
+ "flate2",
+ "lzxd",
+ "time",
+]
+
+[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -356,6 +374,12 @@ dependencies = [
[[package]]
name = "fallible-iterator"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
+
+[[package]]
+name = "fallible-iterator"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
@@ -383,7 +407,7 @@ version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
dependencies = [
- "fallible-iterator",
+ "fallible-iterator 0.3.0",
"indexmap",
"stable_deref_trait",
]
@@ -443,6 +467,15 @@ dependencies = [
]
[[package]]
+name = "itertools"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
+dependencies = [
+ "either",
+]
+
+[[package]]
name = "itoa"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -489,6 +522,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
+name = "lzxd"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "784462f20dddd9dfdb45de963fa4ad4a288cb10a7889ac5d2c34fb6481c6b213"
+
+[[package]]
name = "memchr"
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -632,6 +671,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
+name = "pdb"
+version = "0.8.0"
+dependencies = [
+ "fallible-iterator 0.2.0",
+ "scroll",
+ "uuid",
+]
+
+[[package]]
+name = "pdb-import-plugin"
+version = "0.1.0"
+dependencies = [
+ "anyhow",
+ "binaryninja",
+ "cab",
+ "home",
+ "itertools",
+ "log",
+ "pdb",
+ "regex",
+]
+
+[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"