2015-01-25 07:11:08 +00:00
|
|
|
[package]
|
|
|
|
name = "elf"
|
2023-02-15 15:38:08 -08:00
|
|
|
version = "0.7.2"
|
2015-01-25 07:11:08 +00:00
|
|
|
authors = ["Christopher Cole <chris.cole.09@gmail.com>"]
|
2016-01-12 03:43:15 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2015-01-25 07:11:08 +00:00
|
|
|
repository = "https://github.com/cole14/rust-elf/"
|
2022-10-03 17:57:45 -07:00
|
|
|
documentation = "https://docs.rs/elf/latest/elf/"
|
2015-01-26 21:46:44 -08:00
|
|
|
description = "A pure-rust library for parsing ELF files"
|
2022-10-13 00:13:12 -07:00
|
|
|
keywords = ["binary", "elf", "object", "parser"]
|
2022-10-21 13:48:10 -07:00
|
|
|
categories = ["no-std", "os", "embedded"]
|
2022-11-09 16:32:16 -08:00
|
|
|
exclude = [".gitignore", "/.github", "/sample-objects"]
|
2015-01-25 07:11:08 +00:00
|
|
|
readme = "README.md"
|
2022-10-06 13:49:07 -07:00
|
|
|
edition = "2021"
|
2015-01-25 07:11:08 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "elf"
|
|
|
|
|
2015-06-29 05:38:59 -05:00
|
|
|
[dependencies]
|
2023-07-19 17:50:05 +03:00
|
|
|
hashbrown = { version = "0.14.0", optional = true, default-features = false }
|
2022-10-20 23:00:57 -07:00
|
|
|
|
|
|
|
[features]
|
2022-10-30 14:26:07 -07:00
|
|
|
default = ["std", "to_str"]
|
2022-10-20 23:00:57 -07:00
|
|
|
std = []
|
2022-10-30 14:26:07 -07:00
|
|
|
to_str = []
|
2023-07-19 17:13:56 +03:00
|
|
|
no_std_stream = ["hashbrown"]
|
2023-01-21 12:01:38 -08:00
|
|
|
# Enable for nightly feature(error_in_core) to impl core::error::Error on ParseError
|
2023-01-11 02:57:24 +01:00
|
|
|
nightly = []
|