Skip to content

Commit

Permalink
Fill up Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Jul 13, 2024
1 parent adf6e79 commit 072b7a2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/publish_crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 7 additions & 1 deletion slinky-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@
name = "slinky-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.74.1"
authors = ["Anghelo Carvajal <[email protected]>"]
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"] }
Expand Down
8 changes: 7 additions & 1 deletion slinky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@
name = "slinky"
version = "0.1.0"
edition = "2021"
rust-version = "1.66.1"
authors = ["Anghelo Carvajal <[email protected]>"]
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"]}
Expand Down

0 comments on commit 072b7a2

Please sign in to comment.