dotscope 0.4.0

A high-performance, cross-platform framework for analyzing and reverse engineering .NET PE executables
Documentation
[package]
name = "dotscope"
version = "0.4.0"
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.15"
uguid = "2.2.1"
widestring = "1.2.0"
strum = { version = "0.27.2", features = ["derive"]}
memmap2 = "0.9.7"
tempfile = "3.20.0"
#goblin = "0.10.0"
# Currently a fork of mine, that includes crash fixes which have not yet been merged into master
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.2"
dashmap = "6.1.0"
crossbeam-skiplist = "0.1.3"
rayon = "1.11.0"
boxcar = "0.2.14"
quick-xml = "0.38.1"

[dev-dependencies]
criterion = "0.7.0"

[[bench]]
name = "cilobject"
harness = false

[[bench]]
name = "cilassemblyview"
harness = false

[[bench]]
name = "assembly"
harness = false

[profile.bench]
debug = true
lto="fat"
opt-level = 3

[profile.release]
lto="fat"
opt-level = 3