kmoddep 0.1.5

Linux module information
Documentation

kmoddep

A tiny library to work with Linux kernel module information. It currently features the following:

  • finding all available kernels
  • find module dependencies
  • lsmod (as a function)

Documentation

https://docs.rs/kmoddep/latest/kmoddep/

Usage Example

use kmoddep::modinfo::lsmod;

fn main() {
    for m in lsmod() {
        println!("{:<30} {:<10} {} {}", m.name, m.mem_size, m.instances, m.dependencies.join(", ");
    }
}