├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── README.md ├── builds.md ├── libraries.md ├── testing.md ├── toolchains.md └── toolchains │ ├── clang.toml │ ├── gcc.toml │ ├── msvc.toml │ ├── profiles.toml │ └── zig.toml ├── rustfmt.toml ├── src ├── action │ ├── build.rs │ ├── clangd.rs │ ├── help.rs │ ├── mod.rs │ ├── new.rs │ ├── run.rs │ └── test.rs ├── config │ ├── build.rs │ ├── elems.rs │ ├── lib.rs │ └── mod.rs ├── error.rs ├── exec │ ├── gnu.rs │ ├── incremental.rs │ ├── mocks.rs │ ├── mod.rs │ ├── msvc.rs │ ├── output.rs │ ├── prep.rs │ └── queue.rs ├── fetch.rs ├── input.rs ├── input2.rs ├── log.rs └── main.rs └── testframework └── vangotest ├── asserts.h ├── asserts2.h ├── bench.h ├── casserts.h └── casserts2.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/builds.md -------------------------------------------------------------------------------- /docs/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/libraries.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains.md -------------------------------------------------------------------------------- /docs/toolchains/clang.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains/clang.toml -------------------------------------------------------------------------------- /docs/toolchains/gcc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains/gcc.toml -------------------------------------------------------------------------------- /docs/toolchains/msvc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains/msvc.toml -------------------------------------------------------------------------------- /docs/toolchains/profiles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains/profiles.toml -------------------------------------------------------------------------------- /docs/toolchains/zig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/docs/toolchains/zig.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/action/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/build.rs -------------------------------------------------------------------------------- /src/action/clangd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/clangd.rs -------------------------------------------------------------------------------- /src/action/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/help.rs -------------------------------------------------------------------------------- /src/action/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/mod.rs -------------------------------------------------------------------------------- /src/action/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/new.rs -------------------------------------------------------------------------------- /src/action/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/run.rs -------------------------------------------------------------------------------- /src/action/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/action/test.rs -------------------------------------------------------------------------------- /src/config/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/config/build.rs -------------------------------------------------------------------------------- /src/config/elems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/config/elems.rs -------------------------------------------------------------------------------- /src/config/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/config/lib.rs -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/config/mod.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/exec/gnu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/gnu.rs -------------------------------------------------------------------------------- /src/exec/incremental.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/incremental.rs -------------------------------------------------------------------------------- /src/exec/mocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/mocks.rs -------------------------------------------------------------------------------- /src/exec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/mod.rs -------------------------------------------------------------------------------- /src/exec/msvc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/msvc.rs -------------------------------------------------------------------------------- /src/exec/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/output.rs -------------------------------------------------------------------------------- /src/exec/prep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/prep.rs -------------------------------------------------------------------------------- /src/exec/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/exec/queue.rs -------------------------------------------------------------------------------- /src/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/fetch.rs -------------------------------------------------------------------------------- /src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/input.rs -------------------------------------------------------------------------------- /src/input2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/input2.rs -------------------------------------------------------------------------------- /src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/log.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/src/main.rs -------------------------------------------------------------------------------- /testframework/vangotest/asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/testframework/vangotest/asserts.h -------------------------------------------------------------------------------- /testframework/vangotest/asserts2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/testframework/vangotest/asserts2.h -------------------------------------------------------------------------------- /testframework/vangotest/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/testframework/vangotest/bench.h -------------------------------------------------------------------------------- /testframework/vangotest/casserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/testframework/vangotest/casserts.h -------------------------------------------------------------------------------- /testframework/vangotest/casserts2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmVance1/VanGo/HEAD/testframework/vangotest/casserts2.h --------------------------------------------------------------------------------