From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jan 2022 22:05:49 +0000 (+0000) Subject: Update hex requirement from 0.3 to 0.4 X-Git-Tag: v0.0.105~36^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=f39fa69b680066c1dc7e74adaef1685c8fce756f;p=rust-lightning Update hex requirement from 0.3 to 0.4 Updates the requirements on [hex](https://github.com/KokaKiwi/rust-hex) to permit the latest version. - [Release notes](https://github.com/KokaKiwi/rust-hex/releases) - [Commits](https://github.com/KokaKiwi/rust-hex/compare/v0.3...v0.4.3) --- updated-dependencies: - dependency-name: hex dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index c4b905e86..e1f33f0fa 100644 --- a/lightning-invoice/Cargo.toml +++ b/lightning-invoice/Cargo.toml @@ -24,4 +24,4 @@ core2 = { version = "0.3.0", default-features = false, optional = true } [dev-dependencies] lightning = { version = "0.0.104", path = "../lightning", default-features = false, features = ["_test_utils"] } -hex = "0.3" +hex = "0.4" diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index 55ee17799..135d42a6a 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -37,14 +37,14 @@ bitcoin = { version = "0.27", default-features = false, features = ["secp-recove secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] } hashbrown = { version = "0.11", optional = true } -hex = { version = "0.3", optional = true } +hex = { version = "0.4", optional = true } regex = { version = "0.1.80", optional = true } backtrace = { version = "0.3", optional = true } core2 = { version = "0.3.0", optional = true, default-features = false } [dev-dependencies] -hex = "0.3" +hex = "0.4" regex = "0.1.80" # TODO remove this once rust-bitcoin PR #637 is released secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }