diff options
Diffstat (limited to 'vendor/gix-packetline/src')
-rw-r--r-- | vendor/gix-packetline/src/decode.rs | 2 | ||||
-rw-r--r-- | vendor/gix-packetline/src/encode/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gix-packetline/src/decode.rs b/vendor/gix-packetline/src/decode.rs index b01087a1c..35d2b5149 100644 --- a/vendor/gix-packetline/src/decode.rs +++ b/vendor/gix-packetline/src/decode.rs @@ -72,7 +72,7 @@ pub fn hex_prefix(four_bytes: &[u8]) -> Result<PacketLineOrWantedSize<'_>, Error } let mut buf = [0u8; U16_HEX_BYTES / 2]; - hex::decode_to_slice(four_bytes, &mut buf).map_err(|err| Error::HexDecode { err: err.to_string() })?; + faster_hex::hex_decode(four_bytes, &mut buf).map_err(|err| Error::HexDecode { err: err.to_string() })?; let wanted_bytes = u16::from_be_bytes(buf); if wanted_bytes == 3 { diff --git a/vendor/gix-packetline/src/encode/mod.rs b/vendor/gix-packetline/src/encode/mod.rs index cd82f12e6..302c6d370 100644 --- a/vendor/gix-packetline/src/encode/mod.rs +++ b/vendor/gix-packetline/src/encode/mod.rs @@ -22,6 +22,6 @@ pub use blocking_io::*; pub(crate) fn u16_to_hex(value: u16) -> [u8; 4] { let mut buf = [0u8; 4]; - hex::encode_to_slice(value.to_be_bytes(), &mut buf).expect("two bytes to 4 hex chars never fails"); + faster_hex::hex_encode(&value.to_be_bytes(), &mut buf).expect("two bytes to 4 hex chars never fails"); buf } |