aprender-zram-cli 0.64.0

CLI tool for zram device management (zramctl replacement)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! trueno-zram binary. The command surface lives in the library
//! (`aprender_zram_cli`) so `apr zram` can reach the same code; see the module
//! docs there.

#![deny(missing_docs)]
#![deny(clippy::panic)]
#![warn(clippy::all, clippy::pedantic)]

use std::process::ExitCode;

fn main() -> ExitCode {
    aprender_zram_cli::run()
}