mirror of
https://github.com/hexagonal-sun/moss-kernel.git
synced 2026-01-30 09:01:44 -05:00
21 lines
669 B
TOML
21 lines
669 B
TOML
[package]
|
|
name = "libkernel"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ext4-view = { git = "https://github.com/arihant2math/ext4-view-rs.git", branch = "main" }
|
|
paste = "1.0.15"
|
|
thiserror = { version = "2.0.12", default-features = false }
|
|
tock-registers = "0.10.1"
|
|
log = "0.4.27"
|
|
async-trait = "0.1.88"
|
|
object = { version = "0.38.0", default-features = false, features = ["core", "elf", "read_core"] }
|
|
bitflags = "2.9.1"
|
|
ringbuf = { version = "0.4.8", default-features = false, features = ["alloc"] }
|
|
intrusive-collections = { version = "0.9.7", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9.1"
|
|
tokio = { version = "1.47.1", features = ["full"] }
|