Skip to content

Commit a8b1fdb

Browse files
authored
Remove patch.crates-io dependencies (#573)
Version changes: - `block-buffer` to `0.11.0-rc.5` - `block-padding` to `0.4.0-rc.4` - `cipher` to `0.5.0-rc.1` - `crypto-bigint` to `0.7.0-rc.4` - `crypto-common` to `0.2.0-rc.4` - `ctr` to `0.10.0-rc.1` - `digest` to `0.11.0-rc.1` - `inout` to `0.2.0-rc.6` - `salsa20` to `0.11.0-rc.1` - `sha1` to `0.11.0-rc.2` - `sha2` to `0.11.0-rc.2` - `sha3` to `0.11.0-rc.2`
1 parent 77d3f86 commit a8b1fdb

File tree

2 files changed

+39
-49
lines changed

2 files changed

+39
-49
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ rust-version = "1.85"
1414

1515
[dependencies]
1616
const-oid = { version = "0.10", default-features = false }
17-
crypto-bigint = { version = "0.7.0-rc.2", default-features = false, features = ["zeroize", "alloc"] }
17+
crypto-bigint = { version = "0.7.0-rc.4", default-features = false, features = ["zeroize", "alloc"] }
1818
crypto-primes = { version = "0.7.0-pre.1", default-features = false }
19-
digest = { version = "0.11.0-rc.0", default-features = false, features = ["alloc", "oid"] }
19+
digest = { version = "0.11.0-rc.1", default-features = false, features = ["alloc", "oid"] }
2020
rand_core = { version = "0.9", default-features = false }
2121
signature = { version = "3.0.0-rc.2", default-features = false, features = ["alloc", "digest", "rand_core"] }
2222
subtle = { version = "2.6.1", default-features = false }
@@ -26,9 +26,9 @@ zeroize = { version = "1.5", features = ["alloc"] }
2626
pkcs1 = { version = "0.8.0-rc.3", optional = true, default-features = false, features = ["alloc", "pem"] }
2727
pkcs8 = { version = "0.11.0-rc.6", optional = true, default-features = false, features = ["alloc", "pem"] }
2828
serdect = { version = "0.3.0", optional = true }
29-
sha1 = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
29+
sha1 = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["oid"] }
3030
spki = { version = "0.8.0-rc.4", optional = true, default-features = false, features = ["alloc"] }
31-
sha2 = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
31+
sha2 = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["oid"] }
3232
serde = { version = "1.0.184", optional = true, default-features = false, features = ["derive"] }
3333

3434
[dev-dependencies]
@@ -40,9 +40,9 @@ rand_xorshift = "0.4"
4040
rand_chacha = "0.9"
4141
rand = "0.9"
4242
rand_core = { version = "0.9.1", default-features = false }
43-
sha1 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
44-
sha2 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
45-
sha3 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
43+
sha1 = { version = "0.11.0-rc.2", default-features = false, features = ["oid"] }
44+
sha2 = { version = "0.11.0-rc.2", default-features = false, features = ["oid"] }
45+
sha3 = { version = "0.11.0-rc.2", default-features = false, features = ["oid"] }
4646
hex = { version = "0.4.3", features = ["serde"] }
4747
serde_json = "1.0.138"
4848
serde = { version = "1.0.184", features = ["derive"] }
@@ -68,21 +68,3 @@ opt-level = 2
6868

6969
[profile.bench]
7070
debug = true
71-
72-
[patch.crates-io]
73-
# https://github.com/RustCrypto/utils/pull/1208
74-
block-buffer = { git = "https://github.com/RustCrypto/utils" }
75-
# https://github.com/RustCrypto/utils/pull/1208
76-
block-padding = { git = "https://github.com/RustCrypto/utils" }
77-
# https://github.com/RustCrypto/traits/pull/1976
78-
cipher = { git = "https://github.com/RustCrypto/traits" }
79-
# https://github.com/RustCrypto/traits/pull/1976
80-
crypto-common = { git = "https://github.com/RustCrypto/traits" }
81-
# https://github.com/RustCrypto/block-modes/pull/84
82-
ctr = { git = "https://github.com/RustCrypto/block-modes" }
83-
# https://github.com/RustCrypto/traits/pull/1976
84-
digest = { git = "https://github.com/RustCrypto/traits" }
85-
# https://github.com/RustCrypto/utils/pull/1208
86-
inout = { git = "https://github.com/RustCrypto/utils" }
87-
# https://github.com/RustCrypto/stream-ciphers/pull/450
88-
salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers" }

0 commit comments

Comments
 (0)