Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up| [package] | |
| name = "pelite" | |
| version = "0.7.1" | |
| authors = ["Casper <CasualX@users.noreply.github.com>"] | |
| edition = "2018" | |
| description = "Lightweight, memory-safe, zero-allocation library for reading and navigating PE binaries." | |
| documentation = "https://docs.rs/pelite/" | |
| repository = "https://github.com/CasualX/pelite" | |
| readme = "readme.md" | |
| keywords = ["exe", "dll", "mui", "bin", "pe"] | |
| categories = ["parsing", "command-line-utilities"] | |
| license = "MIT" | |
| [features] | |
| default = ["mmap"] | |
| unsafe_alignment = [] | |
| mmap = ["libc", "winapi"] | |
| [badges] | |
| appveyor = { repository = "CasualX/pelite", branch = "master", service = "github" } | |
| travis-ci = { repository = "CasualX/pelite", branch = "master", service = "github" } | |
| maintenance = { state = "actively-developed" } | |
| [profile.release] | |
| lto = true | |
| opt-level = 2 | |
| [package.metadata.docs.rs] | |
| all-features = true | |
| default-target = "x86_64-pc-windows-msvc" | |
| [dependencies] | |
| serde = { version = "1.0", optional = true, features = ["derive"] } | |
| data-encoding = { version = "2.1", optional = true } | |
| [target.'cfg(unix)'.dependencies] | |
| libc = { version = "0.2", optional = true } | |
| [target.'cfg(windows)'.dependencies] | |
| winapi = { version = "0.3", optional = true, features = ["fileapi", "memoryapi", "handleapi"] } | |
| [dev-dependencies] | |
| rand = "0.5" | |
| lde = "0.3" |