[package]
edition = "2024"
name = "kernel-elf-parser"
version = "0.3.4"
authors = [
"Youjie Zheng <zyj578335934@gmail.com>",
"Yu Chen <yuchen@tsinghua.edu.cn>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An lightweight ELF parser that parses ELF files and converts them into information needed for kernel building"
documentation = "https://docs.rs/kernel-elf-parser"
readme = "README.md"
keywords = [
"Starry",
"ELF",
"kernel",
]
categories = ["no-std"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
repository = "https://github.com/Starry-OS/kernel-elf-parser"
[lib]
name = "kernel_elf_parser"
path = "src/lib.rs"
[[test]]
name = "test_dynamic"
path = "tests/test_dynamic.rs"
[[test]]
name = "test_static"
path = "tests/test_static.rs"
[dependencies.xmas-elf]
version = "0.9"
[dependencies.zero]
version = "0.1.3"
[dependencies.zerocopy]
version = "0.8.26"
features = ["derive"]