mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
21 lines
725 B
TOML
21 lines
725 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]
|
|
crc = { path = "../crc" }
|
|
memoffset = "0.9.0"
|
|
ringbuffer = "0.15.0"
|
|
xarray = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/xarray", rev = "de93b57c34", features = ["slab-friendly"] }
|
|
|
|
# 一个无锁MPSC队列
|
|
[dependencies.thingbuf]
|
|
git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/thingbuf.git"
|
|
rev = "2dded730c3"
|
|
default-features = false
|
|
features = ["alloc", "static"]
|