Skip to content

Commit

Permalink
Merge pull request #4 from pluots/dependencies
Browse files Browse the repository at this point in the history
Remove git dependencies, update outdated
  • Loading branch information
tgross35 authored Nov 13, 2023
2 parents 7b171c3 + 463baa4 commit b78c3b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-msvc]
os: [ubuntu-latest, macos-latest, windows-latest]
name: "Test on ${{ matrix.os }} (cargo test)"
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ serde_json = { version = "1.0.108", features = ["preserve_order"] }
ureq = { version = "2.8.0", features = ["json"] }
sha1 = "0.10.6"
hex = "0.4.3"
k256 = { git = "https://github.com/RustCrypto/elliptic-curves.git", features = ["ecdh", "ecdsa", "jwk"] }
p256 = { git = "https://github.com/RustCrypto/elliptic-curves.git", features = ["ecdh", "ecdsa", "jwk"] }
p384 = { git = "https://github.com/RustCrypto/elliptic-curves.git", features = ["ecdh", "ecdsa", "jwk"] }
p521 = { git = "https://github.com/RustCrypto/elliptic-curves.git", features = ["ecdh", "jwk"] }
k256 = { version = "0.13.1", features = ["ecdh", "ecdsa", "jwk"] }
p256 = { version = "0.13.2", features = ["ecdh", "ecdsa", "jwk"] }
p384 = { version = "0.13.0", features = ["ecdh", "ecdsa", "jwk"] }
p521 = { version = ">=0.13.3", features = ["ecdh", "ecdsa", "jwk"] }
base64ct = { version = "1.6.0", features = ["alloc"] }
elliptic-curve = { version = "0.13.6", features = ["jwk"] }
primeorder = "0.13.3"
Expand Down

0 comments on commit b78c3b9

Please sign in to comment.