Skip to content

Commit

Permalink
ecdsa: unpin der and spki dependencies (#848)
Browse files Browse the repository at this point in the history
Removes the leading `=` requirement from these dependencies, since
they're both `rc.0`
  • Loading branch information
tarcieri authored Aug 18, 2024
1 parent 301248f commit fe6176a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ elliptic-curve = { version = "=0.14.0-pre.6", default-features = false, features
signature = { version = "=2.3.0-pre.4", default-features = false, features = ["rand_core"] }

# optional dependencies
der = { version = "=0.8.0-rc.0", optional = true }
der = { version = "0.8.0-rc.0", optional = true }
digest = { version = "=0.11.0-pre.9", optional = true, default-features = false, features = ["oid"] }
rfc6979 = { version = "=0.5.0-pre.4", optional = true, path = "../rfc6979" }
serdect = { version = "0.2", optional = true, default-features = false, features = ["alloc"] }
sha2 = { version = "=0.11.0-pre.4", optional = true, default-features = false, features = ["oid"] }
spki = { version = "=0.8.0-rc.0", optional = true, default-features = false }
spki = { version = "0.8.0-rc.0", optional = true, default-features = false }

[dev-dependencies]
elliptic-curve = { version = "=0.14.0-pre.6", default-features = false, features = ["dev"] }
Expand Down

0 comments on commit fe6176a

Please sign in to comment.