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

23 lines
350 B
TOML

[package]
name = "modules"
version = "0.1.0"
edition = "2021"
authors = ["Rust Kernel Contributors"]
description = "Kernel modules"
license = "GPL-2.0"
[lib]
name = "modules"
crate-type = ["rlib"]
[dependencies]
kernel = { path = "../kernel" }
[[bin]]
name = "hello_module"
path = "src/hello.rs"
[[bin]]
name = "test_module"
path = "src/test.rs"