├── .github └── workflows │ └── build.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Changelog.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── Readme.md ├── src ├── help.txt ├── main.rs └── post_build_script_manifest.toml └── tests ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── cargo_config ├── .cargo │ └── config.toml ├── Cargo.toml ├── post_build.rs └── src │ └── lib.rs ├── dependency ├── Cargo.toml ├── post_build.rs └── src │ └── lib.rs └── simple ├── Cargo.toml ├── post_build.rs └── src └── lib.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/Readme.md -------------------------------------------------------------------------------- /src/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/src/help.txt -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/post_build_script_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/src/post_build_script_manifest.toml -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /tests/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/Cargo.lock -------------------------------------------------------------------------------- /tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/Cargo.toml -------------------------------------------------------------------------------- /tests/cargo_config/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "x86_64-unknown-none" 3 | -------------------------------------------------------------------------------- /tests/cargo_config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/cargo_config/Cargo.toml -------------------------------------------------------------------------------- /tests/cargo_config/post_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/cargo_config/post_build.rs -------------------------------------------------------------------------------- /tests/cargo_config/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /tests/dependency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/dependency/Cargo.toml -------------------------------------------------------------------------------- /tests/dependency/post_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/dependency/post_build.rs -------------------------------------------------------------------------------- /tests/dependency/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/dependency/src/lib.rs -------------------------------------------------------------------------------- /tests/simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/simple/Cargo.toml -------------------------------------------------------------------------------- /tests/simple/post_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/simple/post_build.rs -------------------------------------------------------------------------------- /tests/simple/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil-opp/cargo-post/HEAD/tests/simple/src/lib.rs --------------------------------------------------------------------------------