xref: /DragonOS/kernel/Cargo.toml (revision 9358ff0f6f7daa18d6fab4497de025736b3d6725)
1[package]
2name = "dragonos_kernel"
3version = "0.1.0"
4edition = "2021"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[lib]
9crate-type = ["staticlib"]
10
11# 运行时依赖项
12[dependencies]
13x86_64 = "0.14.10"
14
15# 构建时依赖项
16[build-dependencies]
17bindgen = "0.61.0"
18
19
20