goblin 0.0.7

An impish, cross-platform binary parsing and loading crate
Documentation
[package]
name = "goblin"
version = "0.0.7"
authors = ["m4b <m4b.github.io@gmail.com>", "seu <seu@panopticon.re>"]
readme = "README.md"
keywords = ["binary", "elf", "mach", "pe", "archive"]
repository = "https://github.com/m4b/goblin"
license = "MIT"
description = "An impish, cross-platform binary parsing and loading crate"
documentation = "https://docs.rs/goblin"

[lib]

[dependencies.scroll]
version = "0.2.0"
optional = true

[dependencies.scroll_derive]
version = "0.1.0"
optional = true

[features]
default = ["std", "elf32", "elf64", "mach32", "mach64", "pe32", "pe64", "goblin", "endian_fd", "archive"]
std = []
elf32 = []
elf64 = []
mach32 = []
# for now we will require mach64 and pe to be std + endian_fd
mach64 = ["std", "endian_fd"]
pe32 = ["std", "endian_fd"]
pe64 = ["std", "endian_fd"]
goblin = []
archive = ["std", "endian_fd"]
endian_fd = ["scroll", "scroll_derive"]