├── .github ├── dependabot.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── dist-workspace.toml ├── scripts └── release-version.sh ├── src ├── core.rs ├── grid.rs ├── main.rs └── signals.rs └── tests ├── acceptance.rs └── acceptance_helpers.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/README.md -------------------------------------------------------------------------------- /dist-workspace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/dist-workspace.toml -------------------------------------------------------------------------------- /scripts/release-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/scripts/release-version.sh -------------------------------------------------------------------------------- /src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/src/core.rs -------------------------------------------------------------------------------- /src/grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/src/grid.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/signals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/src/signals.rs -------------------------------------------------------------------------------- /tests/acceptance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/tests/acceptance.rs -------------------------------------------------------------------------------- /tests/acceptance_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/quickenv/HEAD/tests/acceptance_helpers.rs --------------------------------------------------------------------------------