Skip to content

Commit 0ea307a

Browse files
committed
Merge #221: ci: fixes for rust stable clippy, and rust 1.56.1 compilation
01b0d2c ci: pin libc to 0.2.163 for rust 1.56.1 (Byron Hambly) 7f39702 clippy: fix stable clippy issues (Byron Hambly) Pull request description: Fixes clippy for the stable CI job, and pins libc to 0.2.163 for the rust 1.56.1 job ACKs for top commit: RCasatta: ACK 01b0d2c apoelstra: ACK 01b0d2c; successfully ran local tests; thanks! Tree-SHA512: e2d1a04217264bcf8ec81fac5936a10aaa4b306b1b733eec47245d7cd7b93a09bebe1d9626128ad1e2b7b26277560e791f5c7d8c5bb413fb6a4e25e622fa1ea8
2 parents da45990 + 01b0d2c commit 0ea307a

File tree

9 files changed

+28
-27
lines changed

9 files changed

+28
-27
lines changed

contrib/test.sh

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if cargo --version | grep "1\.56"; then
99
cargo update -p which --precise 4.4.0
1010
cargo update -p byteorder --precise 1.4.3
1111
cargo update -p cc --precise 1.0.94
12+
cargo update -p libc --precise 0.2.163
1213
cargo update -p serde_json --precise 1.0.98
1314
cargo update -p serde --precise 1.0.156
1415
cargo update -p ppv-lite86 --precise 0.2.8

src/blech32/decode.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -439,15 +439,15 @@ pub struct ByteIter<'s> {
439439
iter: FesToBytes<AsciiToFe32Iter<iter::Copied<slice::Iter<'s, u8>>>>,
440440
}
441441

442-
impl<'s> Iterator for ByteIter<'s> {
442+
impl Iterator for ByteIter<'_> {
443443
type Item = u8;
444444
#[inline]
445445
fn next(&mut self) -> Option<u8> { self.iter.next() }
446446
#[inline]
447447
fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
448448
}
449449

450-
impl<'s> ExactSizeIterator for ByteIter<'s> {
450+
impl ExactSizeIterator for ByteIter<'_> {
451451
#[inline]
452452
fn len(&self) -> usize { self.iter.len() }
453453
}

src/block.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ impl<'de> Deserialize<'de> for ExtData {
5555
enum Enum { Unknown, Challenge, Solution, Current, Proposed, Witness }
5656
struct EnumVisitor;
5757

58-
impl<'de> de::Visitor<'de> for EnumVisitor {
58+
impl de::Visitor<'_> for EnumVisitor {
5959
type Value = Enum;
6060

6161
fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {

src/confidential.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ impl<'de> Deserialize<'de> for AssetBlindingFactor {
816816
if d.is_human_readable() {
817817
struct HexVisitor;
818818

819-
impl<'de> ::serde::de::Visitor<'de> for HexVisitor {
819+
impl ::serde::de::Visitor<'_> for HexVisitor {
820820
type Value = AssetBlindingFactor;
821821

822822
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
@@ -830,7 +830,7 @@ impl<'de> Deserialize<'de> for AssetBlindingFactor {
830830
if let Ok(hex) = ::std::str::from_utf8(v) {
831831
AssetBlindingFactor::from_hex(hex).map_err(E::custom)
832832
} else {
833-
return Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self));
833+
Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self))
834834
}
835835
}
836836

@@ -846,7 +846,7 @@ impl<'de> Deserialize<'de> for AssetBlindingFactor {
846846
} else {
847847
struct BytesVisitor;
848848

849-
impl<'de> ::serde::de::Visitor<'de> for BytesVisitor {
849+
impl ::serde::de::Visitor<'_> for BytesVisitor {
850850
type Value = AssetBlindingFactor;
851851

852852
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
@@ -1019,7 +1019,7 @@ impl<'de> Deserialize<'de> for ValueBlindingFactor {
10191019
if d.is_human_readable() {
10201020
struct HexVisitor;
10211021

1022-
impl<'de> ::serde::de::Visitor<'de> for HexVisitor {
1022+
impl ::serde::de::Visitor<'_> for HexVisitor {
10231023
type Value = ValueBlindingFactor;
10241024

10251025
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
@@ -1033,7 +1033,7 @@ impl<'de> Deserialize<'de> for ValueBlindingFactor {
10331033
if let Ok(hex) = ::std::str::from_utf8(v) {
10341034
ValueBlindingFactor::from_hex(hex).map_err(E::custom)
10351035
} else {
1036-
return Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self));
1036+
Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self))
10371037
}
10381038
}
10391039

@@ -1049,7 +1049,7 @@ impl<'de> Deserialize<'de> for ValueBlindingFactor {
10491049
} else {
10501050
struct BytesVisitor;
10511051

1052-
impl<'de> ::serde::de::Visitor<'de> for BytesVisitor {
1052+
impl ::serde::de::Visitor<'_> for BytesVisitor {
10531053
type Value = ValueBlindingFactor;
10541054

10551055
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {

src/dynafed.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ use crate::Script;
2727

2828
/// ad-hoc struct to fmt in hex
2929
struct HexBytes<'a>(&'a [u8]);
30-
impl<'a> fmt::Display for HexBytes<'a> {
30+
impl fmt::Display for HexBytes<'_> {
3131
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
3232
crate::hex::format_hex(self.0, f)
3333
}
3434
}
35-
impl<'a> fmt::Debug for HexBytes<'a> {
35+
impl fmt::Debug for HexBytes<'_> {
3636
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
3737
fmt::Display::fmt(&self, f)
3838
}
3939
}
4040
#[cfg(feature = "serde")]
41-
impl<'a> Serialize for HexBytes<'a> {
41+
impl Serialize for HexBytes<'_> {
4242
fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
4343
if s.is_human_readable() {
4444
s.collect_str(self)
@@ -50,7 +50,7 @@ impl<'a> Serialize for HexBytes<'a> {
5050

5151
/// ad-hoc struct to fmt in hex
5252
struct HexBytesArray<'a>(&'a [Vec<u8>]);
53-
impl<'a> fmt::Display for HexBytesArray<'a> {
53+
impl fmt::Display for HexBytesArray<'_> {
5454
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
5555
write!(f, "[")?;
5656
for (i, e) in self.0.iter().enumerate() {
@@ -62,13 +62,13 @@ impl<'a> fmt::Display for HexBytesArray<'a> {
6262
write!(f, "]")
6363
}
6464
}
65-
impl<'a> fmt::Debug for HexBytesArray<'a> {
65+
impl fmt::Debug for HexBytesArray<'_> {
6666
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
6767
fmt::Display::fmt(&self, f)
6868
}
6969
}
7070
#[cfg(feature = "serde")]
71-
impl<'a> Serialize for HexBytesArray<'a> {
71+
impl Serialize for HexBytesArray<'_> {
7272
fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
7373
let mut seq = s.serialize_seq(Some(self.0.len()))?;
7474
for b in self.0 {
@@ -420,7 +420,7 @@ impl<'de> Deserialize<'de> for Params {
420420
}
421421
struct EnumVisitor;
422422

423-
impl<'de> de::Visitor<'de> for EnumVisitor {
423+
impl de::Visitor<'_> for EnumVisitor {
424424
type Value = Enum;
425425

426426
fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {

src/hex.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ fn chars_to_hex(hi: u8, lo: u8) -> Result<u8, Error> {
104104
Ok(ret as u8)
105105
}
106106

107-
impl<'a> Iterator for HexIterator<'a> {
107+
impl Iterator for HexIterator<'_> {
108108
type Item = Result<u8, Error>;
109109

110110
fn next(&mut self) -> Option<Result<u8, Error>> {
@@ -119,7 +119,7 @@ impl<'a> Iterator for HexIterator<'a> {
119119
}
120120
}
121121

122-
impl<'a> io::Read for HexIterator<'a> {
122+
impl io::Read for HexIterator<'_> {
123123
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
124124
let mut bytes_read = 0usize;
125125
for dst in buf {
@@ -135,15 +135,15 @@ impl<'a> io::Read for HexIterator<'a> {
135135
}
136136
}
137137

138-
impl<'a> DoubleEndedIterator for HexIterator<'a> {
138+
impl DoubleEndedIterator for HexIterator<'_> {
139139
fn next_back(&mut self) -> Option<Result<u8, Error>> {
140140
let lo = self.iter.next_back()?;
141141
let hi = self.iter.next_back().unwrap();
142142
Some(chars_to_hex(hi, lo))
143143
}
144144
}
145145

146-
impl<'a> ExactSizeIterator for HexIterator<'a> {}
146+
impl ExactSizeIterator for HexIterator<'_> {}
147147

148148
/// Outputs hex into an object implementing `fmt::Write`.
149149
///

src/issuance.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl<'de> ::serde::Deserialize<'de> for AssetId {
203203
if d.is_human_readable() {
204204
struct HexVisitor;
205205

206-
impl<'de> ::serde::de::Visitor<'de> for HexVisitor {
206+
impl ::serde::de::Visitor<'_> for HexVisitor {
207207
type Value = AssetId;
208208

209209
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
@@ -217,7 +217,7 @@ impl<'de> ::serde::Deserialize<'de> for AssetId {
217217
if let Ok(hex) = ::std::str::from_utf8(v) {
218218
AssetId::from_str(hex).map_err(E::custom)
219219
} else {
220-
return Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self));
220+
Err(E::invalid_value(::serde::de::Unexpected::Bytes(v), &self))
221221
}
222222
}
223223

@@ -233,7 +233,7 @@ impl<'de> ::serde::Deserialize<'de> for AssetId {
233233
} else {
234234
struct BytesVisitor;
235235

236-
impl<'de> ::serde::de::Visitor<'de> for BytesVisitor {
236+
impl ::serde::de::Visitor<'_> for BytesVisitor {
237237
type Value = AssetId;
238238

239239
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {

src/serde_utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ pub mod hex_bytes {
242242
{
243243
struct Visitor<B>(::std::marker::PhantomData<B>);
244244

245-
impl<'de, B: FromHex> serde::de::Visitor<'de> for Visitor<B> {
245+
impl<B: FromHex> serde::de::Visitor<'_> for Visitor<B> {
246246
type Value = B;
247247

248248
fn expecting(&self, formatter: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
@@ -255,7 +255,7 @@ pub mod hex_bytes {
255255
if let Ok(hex) = ::std::str::from_utf8(v) {
256256
FromHex::from_hex(hex).map_err(E::custom)
257257
} else {
258-
return Err(E::invalid_value(serde::de::Unexpected::Bytes(v), &self));
258+
Err(E::invalid_value(serde::de::Unexpected::Bytes(v), &self))
259259
}
260260
}
261261

src/sighash.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl fmt::Display for Error {
167167

168168
impl ::std::error::Error for Error {}
169169

170-
impl<'u, T> Prevouts<'u, T> where T: Borrow<TxOut> {
170+
impl<T> Prevouts<'_, T> where T: Borrow<TxOut> {
171171
fn check_all(&self, tx: &Transaction) -> Result<(), Error> {
172172
if let Prevouts::All(prevouts) = self {
173173
if prevouts.len() != tx.input.len() {
@@ -866,7 +866,7 @@ impl<'a> Annex<'a> {
866866
}
867867
}
868868

869-
impl<'a> Encodable for Annex<'a> {
869+
impl Encodable for Annex<'_> {
870870
fn consensus_encode<W: io::Write>(&self, writer: W) -> Result<usize, encode::Error> {
871871
encode::consensus_encode_with_size(self.0, writer)
872872
}

0 commit comments

Comments
 (0)