Files
DragonOS/kernel/Cargo.toml
login 2aaf7808ef 在内核中引入cbindgen,生成rust-C的FFI (#81)
* 解决codeql失败问题

* new: 为内核引入cbindgen
2022-11-11 22:21:44 +08:00

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"