From 072b7a2c5bcae9d5f827e6bad63db7a9813c7f3d Mon Sep 17 00:00:00 2001 From: Angie Date: Sat, 13 Jul 2024 19:08:21 -0400 Subject: [PATCH] Fill up Cargo.toml files --- .github/workflows/publish_crate.yml | 12 ++++++++++++ slinky-cli/Cargo.toml | 8 +++++++- slinky/Cargo.toml | 8 +++++++- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml index 4e70943..f344c51 100644 --- a/.github/workflows/publish_crate.yml +++ b/.github/workflows/publish_crate.yml @@ -172,3 +172,15 @@ jobs: - name: Upload slinky-cli crate if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') run: cargo publish --package slinky-cli --token ${{ secrets.CARGO_REGISTRY_TOKEN }} + + msrv: + runs-on: ubuntu-latest + steps: + - name: Checkout reposistory + uses: actions/checkout@v4 + + - name: Setup MSRV checker + uses: taiki-e/install-action@cargo-hack + + - name: Run MSRV checker + run: cargo hack check --rust-version --workspace --all-targets --ignore-private diff --git a/slinky-cli/Cargo.toml b/slinky-cli/Cargo.toml index 620a50f..6505277 100644 --- a/slinky-cli/Cargo.toml +++ b/slinky-cli/Cargo.toml @@ -5,8 +5,14 @@ name = "slinky-cli" version = "0.1.0" edition = "2021" +rust-version = "1.74.1" +authors = ["Anghelo Carvajal "] +license = "MIT" +description = "Linker script generator for decompilation and modding projects" +repository = "https://github.com/decompals/slinky" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +keywords = ["linker_script", "generator", "decompilation"] +categories = ["development-tools::build-utils"] [dependencies] clap = { version = "4.5.1", features = ["derive"] } diff --git a/slinky/Cargo.toml b/slinky/Cargo.toml index 4f4e226..d99a59f 100644 --- a/slinky/Cargo.toml +++ b/slinky/Cargo.toml @@ -5,8 +5,14 @@ name = "slinky" version = "0.1.0" edition = "2021" +rust-version = "1.66.1" +authors = ["Anghelo Carvajal "] +license = "MIT" +description = "Linker script generator for decompilation and modding projects" +repository = "https://github.com/decompals/slinky" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +keywords = ["linker_script", "generator", "decompilation"] +categories = ["development-tools::build-utils"] [dependencies] serde = {version="1.0.197", features = ["derive"]}