-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (19 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
20 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "kernel-elf-parser"
version = "0.3.3"
edition = "2024"
authors = ["Youjie Zheng <zyj578335934@gmail.com>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
documentation = "https://docs.rs/kernel-elf-parser"
repository = "https://github.com/Starry-OS/kernel-elf-parser"
description = "An lightweight ELF parser that parses ELF files and converts them into information needed for kernel building"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
keywords = ["Starry", "ELF", "kernel"]
categories = ["no-std"]
[dependencies]
axerrno = "0.1"
page_table_entry = "0.5"
xmas-elf = "0.9"
memory_addr = "0.4"
log = "0.4.21"
cfg-if = "1.0"