rustkernel/drivers/Cargo.toml
ale 83259d1506
build ok 5
Signed-off-by: ale <ale@manalejandro.com>
2025-06-20 01:50:08 +02:00

23 lines
346 B
TOML

[package]
name = "drivers"
version = "0.1.0"
edition = "2021"
authors = ["Rust Kernel Contributors"]
description = "Kernel drivers"
license = "GPL-2.0"
[lib]
name = "drivers"
crate-type = ["rlib"]
[dependencies]
kernel = { path = "../kernel" }
[[bin]]
name = "mem_devices"
path = "src/mem.rs"
[[bin]]
name = "ramdisk"
path = "src/ramdisk.rs"