object 0.14.1

A unified interface for parsing object file formats.
Documentation
[package]
authors = ["Nick Fitzgerald <fitzgen@gmail.com>", "Philip Craig <philipjcraig@gmail.com>"]
name = "object"
version = "0.14.1"
edition = "2018"
description = "A unified interface for parsing object file formats."
keywords = ["object", "loader", "elf", "mach-o", "pe"]
license = "Apache-2.0/MIT"
repository = "https://github.com/gimli-rs/object"
exclude = ["/.coveralls.yml", "/.travis.yml"]

[package.metadata.docs.rs]
all-features = true

[dependencies]
scroll = { version = "0.9", default-features = false }
target-lexicon = { version = "0.8" }
uuid = { version = "0.7", default-features = false }
flate2 = { version = "1", optional = true }
crc32fast = { version = "1.2", optional = true }
indexmap = { version = "1.1", optional = true }

[dependencies.goblin]
version = "0.0.24"
default-features = false
features = ["endian_fd", "elf32", "elf64", "mach32", "mach64", "pe32", "pe64", "archive"]

[dependencies.parity-wasm]
version = "0.40.0"
optional = true

[dev-dependencies]
memmap = "0.7"

[features]
read = []
write = ["crc32fast", "indexmap", "std"]
std = ["goblin/std"]
compression = ["flate2"]
wasm = ["std", "parity-wasm"]
default = ["read", "std", "compression", "wasm"]

[[example]]
name = "objcopy"
required-features = ["read", "write"]