├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── ext └── default.json ├── scripts └── gen_default_conf.rs ├── src ├── main.rs └── structures.rs └── tests └── default.conf /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | wslconf 3 | 4 | # Added by cargo 5 | /target 6 | 7 | .dccache 8 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/README.md -------------------------------------------------------------------------------- /ext/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/ext/default.json -------------------------------------------------------------------------------- /scripts/gen_default_conf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/scripts/gen_default_conf.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/structures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/src/structures.rs -------------------------------------------------------------------------------- /tests/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslutilities/wslcfg/HEAD/tests/default.conf --------------------------------------------------------------------------------