Skip to content

Commit 57ab8fc

Browse files
committed
Merge rust-bitcoin#5327: Backport hex-conservative upgrade to 0.32.x in order to fix minimal versions bug
1604189 Upgrade hex-conservative to fix minimal versions (Nick Johnson) Pull request description: Backporting hex-conservative point version bump to the `0.32.x` branch to fix the minimal version issue iron'd out in rust-bitcoin/hex-conservative#86. Closes rust-bitcoin#5314 ACKs for top commit: tcharding: ACK 1604189 apoelstra: ACK 1604189; successfully ran local tests Tree-SHA512: a23d951e3e523439ea88d088bca6b87f36bde799f4174440feb2d35c194fb2caa6bd0934f5badad0b70c5340ca338ce9924c6f2a30e805113c85cb12c1878b7a
2 parents 99233f1 + 1604189 commit 57ab8fc

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo-minimal.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ checksum = "62aca2aba2d62b4a7f5b33f3712cb1b0692779a56fb510499d5c0aa594daeaf3"
164164

165165
[[package]]
166166
name = "hex-conservative"
167-
version = "0.2.0"
167+
version = "0.2.2"
168168
source = "registry+https://github.com/rust-lang/crates.io-index"
169-
checksum = "e1aa273bf451e37ed35ced41c71a5e2a4e29064afb104158f2514bcd71c2c986"
169+
checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
170170
dependencies = [
171171
"arrayvec",
172172
]

Cargo-recent.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ checksum = "62aca2aba2d62b4a7f5b33f3712cb1b0692779a56fb510499d5c0aa594daeaf3"
163163

164164
[[package]]
165165
name = "hex-conservative"
166-
version = "0.2.0"
166+
version = "0.2.2"
167167
source = "registry+https://github.com/rust-lang/crates.io-index"
168-
checksum = "e1aa273bf451e37ed35ced41c71a5e2a4e29064afb104158f2514bcd71c2c986"
168+
checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
169169
dependencies = [
170170
"arrayvec",
171171
]

base58/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = fa
2525
internals = { package = "bitcoin-internals", version = "0.3.0", features = ["alloc"] }
2626

2727
[dev-dependencies]
28-
hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }
28+
hex = { package = "hex-conservative", version = "0.2.2", default-features = false, features = ["alloc"] }
2929

3030
[lints.rust]
3131
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(bench)', 'cfg(fuzzing)', 'cfg(kani)' ] }

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rustdoc-args = ["--cfg", "docsrs"]
3131
base58 = { package = "base58ck", version = "0.1.0", default-features = false }
3232
bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] }
3333
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["alloc", "io"] }
34-
hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }
34+
hex = { package = "hex-conservative", version = "0.2.2", default-features = false, features = ["alloc"] }
3535
hex_lit = "0.1.1"
3636
internals = { package = "bitcoin-internals", version = "0.3.0", features = ["alloc"] }
3737
io = { package = "bitcoin-io", version = "0.1.1", default-features = false, features = ["alloc"] }

hashes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ all-features = true
2727
rustdoc-args = ["--cfg", "docsrs"]
2828

2929
[dependencies]
30-
hex = { package = "hex-conservative", version = "0.2.0", default-features = false }
30+
hex = { package = "hex-conservative", version = "0.2.2", default-features = false }
3131

3232
bitcoin-io = { version = "0.1.1", default-features = false, optional = true }
3333
schemars = { version = "0.8.3", default-features = false, optional = true }

0 commit comments

Comments
 (0)