Files
lief-project-LIEF/api/rust/examples/Cargo.toml
T
Romain Thomas 5a19dc9d73 Add support for creating DWARF files
This commit also bootstraps plugin for Ghidra and BinaryNinja

Related to NationalSecurityAgency/ghidra#2687
2025-05-27 14:48:07 +02:00

47 lines
535 B
TOML

[package]
name = "lief-examples"
version = "0.0.0"
edition = "2021"
[dependencies]
lief = { path = "../cargo/lief" }
[[bin]]
name = "reader"
[[bin]]
name = "pe_check_authenticode"
[[bin]]
name = "pe_rich_header"
[[bin]]
name = "elf_deps"
[[bin]]
name = "pe_deps"
[[bin]]
name = "list_macho_encryption"
[[bin]]
name = "dwarf_inspect"
[[bin]]
name = "dwarf_editor"
[[bin]]
name = "pdb_inspect"
[[bin]]
name = "objc_inspect"
[[bin]]
name = "disassembler"
[[bin]]
name = "pe_exceptions"
[[bin]]
name = "test_run_examples"