Skip to content

XiangruLiu0/pdb-dl-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pdb-dl-rs

Rust crate to download PDB by parsing PE file.

Usage

You can use it as a library in your project.

use pdb_dl::PdbDownloader;

#[tokio::main]
async fn main() {
    let pe = PathBuf::from("path/to/pe");
    let out = PathBuf::from("path/to/out");
    let downloader = PdbDownloader::new(pe, out).unwrap();
    downloader.download().await.unwrap();
}

Or you can use it as a binary.

cargo install https://github.com/fre3dm4n/pdb-dl-rs
pdb-dl -i path/to/pe -o path/to/out

About

Rust crate to download PDB by parsing PE file.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages