├── .gitignore ├── Cargo.toml ├── LICENSE └── src ├── main.rs └── runas.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboard-slayer/runas/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboard-slayer/runas/HEAD/LICENSE -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboard-slayer/runas/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/runas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboard-slayer/runas/HEAD/src/runas.yml --------------------------------------------------------------------------------