Skip to content

Commit

Permalink
remove git dependencies to ecdsa and p256 (#1530)
Browse files Browse the repository at this point in the history
ecdsa 0.17.0-pre.9 and p256 0.14.0-pre.2 have now been published
  • Loading branch information
baloo authored Sep 27, 2024
1 parent 514782c commit 75f619d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
22 changes: 13 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,4 @@ x509-cert = { path = "./x509-cert" }
x509-ocsp = { path = "./x509-ocsp" }

# Temp patches to external crates
ecdsa = { git = "https://github.com/RustCrypto/signatures" }
rsa = { git = "https://github.com/RustCrypto/RSA" }
# https://github.com/RustCrypto/elliptic-curves/pull/1075
p256 = { git = "https://github.com/RustCrypto/elliptic-curves.git" }
4 changes: 2 additions & 2 deletions cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pem-rfc7468 = "1.0.0-rc.1"
pkcs5 = "0.8.0-rc.1"
rand = "0.8.5"
rsa = { version = "=0.10.0-pre.2", features = ["sha2"] }
ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.1"
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.2"

[features]
alloc = ["der/alloc"]
Expand Down
4 changes: 2 additions & 2 deletions x509-cert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ tls_codec = { version = "0.4.0", default-features = false, features = ["derive"]
hex-literal = "0.4"
rand = "0.8.5"
rsa = { version = "=0.10.0-pre.2", features = ["sha2"] }
ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.1"
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.2"
rstest = "0.22"
sha2 = { version = "=0.11.0-pre.4", features = ["oid"] }
tempfile = "3.5.0"
Expand Down

0 comments on commit 75f619d

Please sign in to comment.