vivisect 0.1.13

A cross-platform, ELF, Mach-o, and PE binary parsing and loading crate.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vivisect"
version = "0.1.13"
authors = ["Marirs <marirs@gmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cross-platform, ELF, Mach-o, and PE binary parsing and loading crate."
homepage = "https://github.com/marirs/vivisect-rs"
readme = "README.md"
keywords = [
    "vivisect",
    "disassembler",
    "cfg",
    "capstone",
]
categories = [
    "parsing",
    "development-tools::debugging",
]
license-file = "LICENSE"
repository = "https://github.com/marirs/vivisect-rs"

[profile.dev]
opt-level = 3

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
debug-assertions = false

[lib]
name = "vivisect"
path = "src/lib.rs"

[[example]]
name = "main"
path = "examples/main.rs"

[dependencies.capstone]
version = "0.12.0"

[dependencies.chrono]
version = "0.4.23"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.log]
version = "0.4.17"
optional = true
default-features = false

[dependencies.plain]
version = "0.2.3"

[dependencies.scroll]
version = "0.12.0"
default-features = false

[dependencies.simple_logger]
version = "5"

[dev-dependencies.goblin]
version = "0.8.2"

[features]
alloc = [
    "scroll/derive",
    "log",
]
archive = ["alloc"]
default = [
    "std",
    "elf32",
    "elf64",
    "mach32",
    "mach64",
    "pe32",
    "pe64",
    "archive",
    "endian_fd",
]
elf32 = []
elf64 = []
endian_fd = ["alloc"]
mach32 = [
    "alloc",
    "endian_fd",
]
mach64 = [
    "alloc",
    "endian_fd",
]
pe32 = [
    "alloc",
    "endian_fd",
]
pe64 = [
    "alloc",
    "endian_fd",
]
std = [
    "alloc",
    "scroll/std",
]