Skip to content

Commit

Permalink
dsa+ecdsa: support signature up to v2.2 (#756)
Browse files Browse the repository at this point in the history
The v2.2.0 release bumped MSRV to 1.60, however that's still compatible
with the MSRV of `dsa` and `ecdsa`, which are both MSRV 1.65.
  • Loading branch information
tarcieri authored Nov 16, 2023
1 parent 3895f21 commit 250f652
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ num-traits = { version = "0.2", default-features = false }
pkcs8 = { version = "0.10", default-features = false, features = ["alloc"] }
rfc6979 = { version = "0.4", path = "../rfc6979" }
sha2 = { version = "0.10", default-features = false }
signature = { version = "2.0, <2.2", default-features = false, features = ["alloc", "digest", "rand_core"] }
signature = { version = "2.0, <2.3", default-features = false, features = ["alloc", "digest", "rand_core"] }
zeroize = { version = "1", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.65"

[dependencies]
elliptic-curve = { version = "0.13.6", default-features = false, features = ["digest", "sec1"] }
signature = { version = "2.0, <2.2", default-features = false, features = ["rand_core"] }
signature = { version = "2.0, <2.3", default-features = false, features = ["rand_core"] }

# optional dependencies
der = { version = "0.7", optional = true }
Expand Down

0 comments on commit 250f652

Please sign in to comment.