rustkernel/drivers/Cargo.toml
ale bbfefe2546
build ok
Signed-off-by: ale <ale@manalejandro.com>
2025-06-15 23:25:05 +02:00

31 lines
467 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 = "dummy_driver"
path = "src/dummy.rs"
[[bin]]
name = "mem_devices"
path = "src/mem.rs"
[[bin]]
name = "platform_example"
path = "src/platform_example.rs"
[[bin]]
name = "ramdisk"
path = "src/ramdisk.rs"