From be18c7e331ea639fbbabe907a91f6afa044e554e Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Thu, 6 Apr 2023 15:14:57 +1000 Subject: [PATCH] add missing metadata --- .github/workflows/release.yml | 13 +------------ Cargo.toml | 7 +++++++ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54ea865..25616a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,18 +85,7 @@ jobs: # Let subsequent steps know where to find the binary echo "BIN_PATH=${BIN_PATH}" >> $GITHUB_OUTPUT echo "BIN_NAME=${BIN_NAME}" >> $GITHUB_OUTPUT - - - name: Set testing options - id: test-options - shell: bash - run: | - unset CARGO_TEST_OPTIONS - unset CARGO_TEST_OPTIONS ; case ${{ matrix.job.target }} in arm-* | aarch64-*) CARGO_TEST_OPTIONS="--bin ${PROJECT_NAME}" ;; esac; - echo ::set-output name=CARGO_TEST_OPTIONS::${CARGO_TEST_OPTIONS} - - - name: Run tests - run: cross test --target=${{ matrix.job.target }} ${{ steps.test-options.outputs.CARGO_TEST_OPTIONS}} - + - name: Create tarball id: package shell: bash diff --git a/Cargo.toml b/Cargo.toml index c89edea..9f6abfc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,13 @@ name = "drprg" version = "0.1.0" authors = ["Michael Hall "] edition = "2018" +license = "MIT" +description = "Drug resistance prediction with reference graphs" +repository = "https://github.com/mbhall88/drprg" +homepage = "https://github.com/mbhall88/drprg" +readme = "README.md" +keywords = ["bioinformatics", "drug-resistance", "genome-graphs"] +categories = ["science", "command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html