Skip to content

Commit 75f619d

Browse files
authored
remove git dependencies to ecdsa and p256 (#1530)
ecdsa 0.17.0-pre.9 and p256 0.14.0-pre.2 have now been published
1 parent 514782c commit 75f619d

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

Cargo.lock

Lines changed: 13 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,4 @@ x509-cert = { path = "./x509-cert" }
6060
x509-ocsp = { path = "./x509-ocsp" }
6161

6262
# Temp patches to external crates
63-
ecdsa = { git = "https://github.com/RustCrypto/signatures" }
6463
rsa = { git = "https://github.com/RustCrypto/RSA" }
65-
# https://github.com/RustCrypto/elliptic-curves/pull/1075
66-
p256 = { git = "https://github.com/RustCrypto/elliptic-curves.git" }

cms/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ pem-rfc7468 = "1.0.0-rc.1"
3838
pkcs5 = "0.8.0-rc.1"
3939
rand = "0.8.5"
4040
rsa = { version = "=0.10.0-pre.2", features = ["sha2"] }
41-
ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] }
42-
p256 = "=0.14.0-pre.1"
41+
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
42+
p256 = "=0.14.0-pre.2"
4343

4444
[features]
4545
alloc = ["der/alloc"]

x509-cert/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ tls_codec = { version = "0.4.0", default-features = false, features = ["derive"]
3131
hex-literal = "0.4"
3232
rand = "0.8.5"
3333
rsa = { version = "=0.10.0-pre.2", features = ["sha2"] }
34-
ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] }
35-
p256 = "=0.14.0-pre.1"
34+
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
35+
p256 = "=0.14.0-pre.2"
3636
rstest = "0.22"
3737
sha2 = { version = "=0.11.0-pre.4", features = ["oid"] }
3838
tempfile = "3.5.0"

0 commit comments

Comments
 (0)