rustkernel/modules/Cargo.toml
ale 7409cd4d26
initial commit
Signed-off-by: ale <ale@manalejandro.com>
2025-06-15 22:26:49 +02:00

19 lines
304 B
TOML

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