rust/mikros_std_deps/elf-0.7.4/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-06-06 22:08:20 -05:00
# 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 = "elf"
version = "0.7.4"
authors = ["Christopher Cole <chris.cole.09@gmail.com>"]
exclude = [
".gitignore",
"/.github",
"/sample-objects",
]
description = "A pure-rust library for parsing ELF files"
documentation = "https://docs.rs/elf/latest/elf/"
readme = "README.md"
keywords = [
"binary",
"elf",
"object",
"parser",
]
categories = [
"no-std",
"os",
"embedded",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/cole14/rust-elf/"
[lib]
name = "elf"
[dependencies.core]
version = "1.0.0"
optional = true
package = "rustc-std-workspace-core"
[dependencies.compiler_builtins]
version = "0.1"
optional = true
[features]
default = [
"std",
"to_str",
]
nightly = []
std = []
to_str = []
rustc-dep-of-std = [
"core",
"compiler_builtins",
]