[package]
name = "dotscope"
version = "0.3.1"
authors = ["Johann Kempter <admin@binflip.rs>"]
edition = "2021"
description = "A high-performance, cross-platform framework for analyzing and reverse engineering .NET PE executables"
license = "Apache-2.0"
repository = "https://github.com/BinFlip/dotscope"
homepage = "https://github.com/BinFlip/dotscope"
documentation = "https://docs.rs/dotscope"
keywords = ["dotnet", "cil", "assembly", "reverse-engineering", "metadata"]
categories = ["parsing", "development-tools", "encoding"]
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
thiserror = "2.0.12"
uguid = "2.2.1"
widestring = "1.1.0"
strum = { version = "0.27.1", features = ["derive"]}
memmap2 = "0.9.5"
goblin = { version = "0.10.0", git= "https://github.com/BinFlip/goblin.git", branch = "pe.relocation.parse_with_opts_crash"}
ouroboros = "0.18.5"
sha1 = "0.10.6"
md-5 = "0.10.6"
bitflags = "2.9.0"
dashmap = "6.1.0"
crossbeam-skiplist = "0.1.3"
rayon = "1.10.0"
boxcar = "0.2.13"
quick-xml = "0.37.5"
[dev-dependencies]
criterion = "0.6.0"
[[bench]]
name = "cilobject"
harness = false
[profile.bench]
debug = true
lto="fat"
opt-level = 3
[profile.release]
lto="fat"
opt-level = 3