├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── action.yml └── scripts └── update-revs.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dtolnay 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/rust-toolchain/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/rust-toolchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/rust-toolchain/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/rust-toolchain/HEAD/action.yml -------------------------------------------------------------------------------- /scripts/update-revs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/rust-toolchain/HEAD/scripts/update-revs.sh --------------------------------------------------------------------------------