mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 02:46:47 +00:00
* 从fdt的chosen段获取几个需要的字段 * merge patch-early-ioremap * feature: 增加early io remap的fixmap功能 允许在内存管理初始化之前,使用fixmap功能,映射一些物理内存,并记录. * riscv64: 映射uefi systemtable,并完善了riscv64页表填写的部分内容 * 更新仓库网址
19 lines
570 B
TOML
19 lines
570 B
TOML
[package]
|
|
name = "kdepends"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "需要导出的依赖项(为保持内核依赖版本与调试器依赖项版本相同,因此把公共依赖项写在这里)"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
memoffset = "0.9.0"
|
|
crc = { path = "../crc" }
|
|
|
|
# 一个无锁MPSC队列
|
|
[dependencies.thingbuf]
|
|
git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/thingbuf.git"
|
|
rev = "2dded730c3"
|
|
default-features = false
|
|
features = ["alloc", "static"]
|