Skip to content

Commit

Permalink
Allow older dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Sep 14, 2023
1 parent 5ce01ff commit a10d3f8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,25 @@ jobs:
- ubuntu-22.04
- windows-2022
- macos-12
versions:
- ""
- "-Zminimal-versions"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
key: test
key: test${{ matrix.versions }}
toolchain: ${{ matrix.toolchain }}
components: clippy

- name: Update lockfile
run: cargo generate-lockfile ${{ matrix.versions }}
env:
RUSTC_BOOTSTRAP: 1

- run: cargo test --workspace --all-targets

package:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ members = [".", "api"]
default-members = [".", "api"]

[workspace.dependencies]
base64 = "0.21.4"
clap = { version = "4.4.2", features = ["derive"] }
ed25519-dalek = { version = "2.0.0", features = ["digest"] }
pretty-error-debug = "0.3.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
thiserror = "1.0.48"
zip = { version = "0.6.6", default-features = false }
base64 = "0.21"
clap = { version = "4", features = ["derive"] }
ed25519-dalek = { version = "2", features = ["digest"] }
pretty-error-debug = "0.3"
rand_core = { version = "0.6", features = ["getrandom"] }
thiserror = "1"
zip = { version = "0.6", default-features = false }

[workspace.dependencies.zipsign-api]
version = "0.1.0-a.0"
Expand Down

0 comments on commit a10d3f8

Please sign in to comment.