xref: /DragonOS/kernel/crates/kdepends/Cargo.toml (revision 597ecc08c2444dcc8f527eb021932718b69c9cc5)
1[package]
2name = "kdepends"
3version = "0.1.0"
4edition = "2021"
5description = "需要导出的依赖项(为保持内核依赖版本与调试器依赖项版本相同,因此把公共依赖项写在这里)"
6
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9[dependencies]
10ringbuffer = "0.15.0"
11memoffset = "0.9.0"
12crc = { path = "../crc" }
13
14# 一个无锁MPSC队列
15[dependencies.thingbuf]
16git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/thingbuf.git"
17rev = "2dded730c3"
18default-features = false
19features = ["alloc", "static"]
20