[package]
edition = "2024"
name = "kapi"
version = "0.2.0"
authors = ["Godones <chenlinfeng25@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of Linux kernel API for loadable kernel module development"
homepage = "https://github.com/Godones/rkm"
documentation = "https://docs.rs/kapi"
readme = "README.md"
keywords = [
"kernel",
"linux",
"linux-kernel-api",
"lkm",
"no-std",
]
license-file = "LICENSE"
repository = "https://github.com/Godones/rkm"
resolver = "2"
[features]
kmem = ["kstr"]
kparameter = []
kstr = []
[lib]
name = "kapi"
path = "src/lib.rs"
[dependencies.axerrno]
version = "0.2"
[dependencies.kmod-tools]
version = "0.2.0"
[dependencies.paste]
version = "1.0"