├── .github └── workflows │ └── Release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── cliff.toml └── src └── main.rs /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/cliff.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbegamerxx954/material-updater/HEAD/src/main.rs --------------------------------------------------------------------------------