mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-25 14:13:23 +00:00
* 新建调度器的文件 * 把softirq vector移动到c文件中(原来在.h) * 将进程切换方式改为“中断返回时切换” * new:使用rust重构CFS * 删除已经在smp中废弃的HPET中断转发函数 * 代码格式化 * 删除多余的dunce依赖
20 lines
322 B
TOML
20 lines
322 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"
|
|
|
|
|