yggdrasil-elf/Cargo.toml
Christopher Cole 1be248c4bb
Add default std feature to allow no_std use-cases
This addresses the ask in #19
2022-10-20 23:00:57 -07:00

21 lines
446 B
TOML

[package]
name = "elf"
version = "0.2.0"
authors = ["Christopher Cole <chris.cole.09@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/cole14/rust-elf/"
documentation = "https://docs.rs/elf/latest/elf/"
description = "A pure-rust library for parsing ELF files"
keywords = ["binary", "elf", "object", "parser"]
readme = "README.md"
edition = "2021"
[lib]
name = "elf"
[dependencies]
[features]
default = ["std"]
std = []