├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── staged-builder-internals ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT └── src │ └── lib.rs └── staged-builder ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── src └── lib.rs └── tests └── test.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/README.md -------------------------------------------------------------------------------- /staged-builder-internals/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/staged-builder-internals/Cargo.toml -------------------------------------------------------------------------------- /staged-builder-internals/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /staged-builder-internals/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /staged-builder-internals/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/staged-builder-internals/src/lib.rs -------------------------------------------------------------------------------- /staged-builder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/staged-builder/Cargo.toml -------------------------------------------------------------------------------- /staged-builder/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /staged-builder/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /staged-builder/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/staged-builder/src/lib.rs -------------------------------------------------------------------------------- /staged-builder/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/staged-builder/HEAD/staged-builder/tests/test.rs --------------------------------------------------------------------------------