├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── args.rs ├── lib.rs ├── main.rs └── util.rs └── tests └── compiles.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: DianaNites 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .cargo 3 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/README.md -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/compiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianaNites/cargo-sysroot/HEAD/tests/compiles.rs --------------------------------------------------------------------------------