├── .github ├── renovate.json5 └── workflows │ ├── ci.yaml │ └── publish.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── src ├── allow_use.rs ├── ident.rs ├── input.rs ├── lib.rs └── output.rs └── test-lib ├── Cargo.toml ├── build.rs └── src └── lib.rs /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /src/allow_use.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/src/allow_use.rs -------------------------------------------------------------------------------- /src/ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/src/ident.rs -------------------------------------------------------------------------------- /src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/src/input.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/src/output.rs -------------------------------------------------------------------------------- /test-lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/test-lib/Cargo.toml -------------------------------------------------------------------------------- /test-lib/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/test-lib/build.rs -------------------------------------------------------------------------------- /test-lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAD97/build-rs/HEAD/test-lib/src/lib.rs --------------------------------------------------------------------------------