diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0a9ace5..7d12888 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -34,9 +34,8 @@ jobs: timeout-minutes: 10 steps: - uses: actions/checkout@v4 - - uses: bp3d-actions/audit-check@9c23bd47e5e7b15b824739e0862cb878a52cc211 - with: - token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions-rust-lang/audit@v1 + name: Audit Rust Dependencies build_and_test_linux: name: Build and Test (Linux) diff --git a/Cargo.toml b/Cargo.toml index 3da0b39..99e7813 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,16 @@ [package] name = "nu_plugin_prometheus" -description = "A nushell plugin for querying prometheus" version = "0.1.0" edition = "2021" + +authors = ["Eric Hodel "] +description = "A nushell plugin for querying prometheus" +homepage = "https://github.com/drbrain/nu_plugin_prometheus" license = "MIT" +readme = "README.md" +repository = "https://github.com/drbrain/nu_plugin_prometheus" +keywords = ["nu", "plugin", "prometheus"] +categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html