lpus/Cargo.toml
nganhkhoa 1bf07214ef first init
Working pdb download and parser
- Read ntoskrnl.exe for GUID
- Download correspoding pdb file
- Parse for globals symbols
- Parse for offset in structs
(Only symbols and structs helps with finding
NonPagedPool{Start,End/First,Last}[Va] are parsed)
2020-02-15 17:39:45 +07:00

13 lines
314 B
TOML

[package]
name = "parse_pdb_for_offsets"
version = "0.1.0"
authors = ["nganhkhoa <mail.nganhkhoa@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pdb = "0.5.0"
reqwest = { version = "0.10.1", features = ["blocking"] }