Skip to content

Commit faeee8d

Browse files
authored
Use crate releases (#1937)
Removes git-based dependencies and uses latest releases of `ecdsa`, `p256`, and `rsa`.
1 parent b3c52e7 commit faeee8d

File tree

4 files changed

+24
-25
lines changed

4 files changed

+24
-25
lines changed

Cargo.lock

Lines changed: 17 additions & 14 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,3 @@ tls_codec_derive = { path = "./tls_codec/derive" }
5959
x509-tsp = { path = "./x509-tsp" }
6060
x509-cert = { path = "./x509-cert" }
6161
x509-ocsp = { path = "./x509-ocsp" }
62-
63-
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }
64-
ecdsa = { git = "https://github.com/RustCrypto/signatures.git" }
65-
rsa = { git = "https://github.com/RustCrypto/RSA.git", branch = "pkcs1/remove-blanket-impl" }

cms/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cbc = { version = "0.2.0-rc.0", optional = true }
2828
cipher = { version = "0.5.0-rc.0", features = ["alloc", "block-padding", "rand_core"], optional = true }
2929
digest = { version = "0.11.0-rc.0", optional = true }
3030
elliptic-curve = { version = "0.14.0-rc.6", optional = true }
31-
rsa = { version = "0.10.0-rc.0", optional = true }
31+
rsa = { version = "0.10.0-rc.3", optional = true }
3232
sha1 = { version = "0.11.0-rc.0", optional = true }
3333
sha2 = { version = "0.11.0-rc.0", optional = true }
3434
sha3 = { version = "0.11.0-rc.0", optional = true }
@@ -43,9 +43,9 @@ pem-rfc7468 = "1.0.0-rc.1"
4343
pkcs5 = "0.8.0-rc.6"
4444
pbkdf2 = "0.13.0-rc.0"
4545
rand = "0.9"
46-
rsa = { version = "0.10.0-rc.1", features = ["sha2"] }
47-
ecdsa = { version = "0.17.0-rc.3", features = ["digest", "pem"] }
48-
p256 = "=0.14.0-pre.8"
46+
rsa = { version = "0.10.0-rc.3", features = ["sha2"] }
47+
ecdsa = { version = "0.17.0-rc.4", features = ["digest", "pem"] }
48+
p256 = "=0.14.0-pre.9"
4949
tokio = { version = "1.45.1", features = ["macros", "rt"] }
5050
x509-cert = { version = "0.3.0-rc.0", features = ["pem"] }
5151

x509-cert/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ tls_codec = { version = "0.4.0", default-features = false, features = ["derive"]
3030
[dev-dependencies]
3131
hex-literal = "1"
3232
rand = "0.9"
33-
rsa = { version = "0.10.0-rc.1", features = ["sha2"] }
34-
ecdsa = { version = "0.17.0-rc.3", features = ["digest", "pem"] }
35-
p256 = "=0.14.0-pre.8"
33+
rsa = { version = "0.10.0-rc.3", features = ["sha2"] }
34+
ecdsa = { version = "0.17.0-rc.4", features = ["digest", "pem"] }
35+
p256 = "=0.14.0-pre.9"
3636
rstest = "0.25"
3737
sha2 = { version = "0.11.0-rc.0", features = ["oid"] }
3838
tempfile = "3.5.0"

0 commit comments

Comments
 (0)