├── .github └── workflows │ ├── audit.yml │ ├── release.yml │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── release.toml ├── src └── main.rs └── tests ├── snapshots ├── ui__amdgpu_info.snap ├── ui__help-2.snap ├── ui__help-3.snap ├── ui__help-4.snap ├── ui__help-5.snap ├── ui__help.snap └── ui__list.snap └── ui.rs /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/README.md -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/release.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/snapshots/ui__amdgpu_info.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__amdgpu_info.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__help-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__help-2.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__help-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__help-3.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__help-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__help-4.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__help-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__help-5.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__help.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__help.snap -------------------------------------------------------------------------------- /tests/snapshots/ui__list.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/snapshots/ui__list.snap -------------------------------------------------------------------------------- /tests/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/linux_modules/HEAD/tests/ui.rs --------------------------------------------------------------------------------