diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index feac937..b9a7e10 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: cargo clippy --all-features + - run: cargo clippy --all-features --verbose Tests: runs-on: ubuntu-latest steps: @@ -42,7 +42,7 @@ jobs: - run: cargo install-test-tools - name: Run tests id: tests - run: cargo llvm-cov nextest --all-features --all-targets --no-fail-fast + run: cargo llvm-cov nextest --all-features --all-targets --no-fail-fast --verbose - name: Prepare coverage report id: coverage if: success() || steps.tests.outcome == 'failure' @@ -79,5 +79,5 @@ jobs: - name: Dry run publish run: | cargo license --all-features --avoid-dev-deps --json > dependencies-license.json - cargo publish --all-features --allow-dirty --dry-run + cargo publish --all-features --allow-dirty --dry-run --verbose cargo package --all-features --list --allow-dirty diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index fd88211..029723a 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -23,4 +23,4 @@ jobs: run: | cargo login ${{ secrets.CRATES_IO_TOKEN }} cargo license --all-features --avoid-dev-deps --json > dependencies-license.json - cargo publish --all-features --allow-dirty + cargo publish --all-features --allow-dirty --verbose diff --git a/Cargo.toml b/Cargo.toml index 4d26588..6155bc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,9 +21,9 @@ v2 = [] v3_0 = [] [dependencies] -serde = { version = "1.0.197", features = ["derive"] } -serde_json = { version = "1.0.114" } -regex = { version = "1.10.3" } -enumset = { version = "1.1.3" } -thiserror = { version = "1.0.58" } +enumset = "1.1.3" monostate = "0.1.11" +regex = "1.10.3" +serde = { version = "1.0.197", features = ["derive"] } +serde_json = "1.0.114" +thiserror = "1.0.58" diff --git a/deny.toml b/deny.toml index de4dc71..44a91c6 100644 --- a/deny.toml +++ b/deny.toml @@ -70,7 +70,6 @@ feature-depth = 1 # A list of advisory IDs to ignore. Note that ignored advisories will still # output a note when they are encountered. ignore = [ - { id = "RUSTSEC-2021-0139", reason = "temporary ignore the issue until the cargo-license switched to clap v3" }, #"RUSTSEC-0000-0000", #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish