mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-25 01:43:30 +00:00
20 lines
341 B
TOML
20 lines
341 B
TOML
[package]
|
|
name = "dragonos_kernel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
# 运行时依赖项
|
|
[dependencies]
|
|
x86_64 = "0.14.10"
|
|
|
|
# 构建时依赖项
|
|
[build-dependencies]
|
|
bindgen = "0.61.0"
|
|
cbindgen = "0.24.3"
|
|
|