├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── cd.yaml │ └── template_values.toml ├── CONTRIBUTING.md ├── LICENSE-MIT ├── README.md └── template ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── audit.yml │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── cargo-generate.toml └── src ├── lib.rs └── main.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/template_values.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/.github/workflows/template_values.toml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/README.md -------------------------------------------------------------------------------- /template/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /template/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /template/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /template/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /template/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/dependabot.yml -------------------------------------------------------------------------------- /template/.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/workflows/audit.yml -------------------------------------------------------------------------------- /template/.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/workflows/cd.yml -------------------------------------------------------------------------------- /template/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.github/workflows/ci.yml -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/CHANGELOG.md -------------------------------------------------------------------------------- /template/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/CONTRIBUTING.md -------------------------------------------------------------------------------- /template/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/Cargo.toml -------------------------------------------------------------------------------- /template/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/LICENSE-APACHE -------------------------------------------------------------------------------- /template/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/LICENSE-MIT -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/cargo-generate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/cargo-generate.toml -------------------------------------------------------------------------------- /template/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-github/template/HEAD/template/src/lib.rs -------------------------------------------------------------------------------- /template/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | --------------------------------------------------------------------------------