Skip to content

Commit 3388a5f

Browse files
committed
Release v9.1.0
1 parent 40c32e4 commit 3388a5f

File tree

7 files changed

+58
-127
lines changed

7 files changed

+58
-127
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v9.1.0
2+
- Use reference instead of value in `Hexify` trait and related serialize functions.
3+
14
### v9.0.0
25
- Expose more friendly APIs, `Hexify` and `DeHexify` traits.
36
- Un-public some tiny functions to encourage using `Hexify` and `DeHexify` traits.

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license = "Apache-2.0/GPL-3.0"
2121
name = "array-bytes"
2222
readme = "README.md"
2323
repository = "https://github.com/hack-ink/array-bytes"
24-
version = "9.0.0"
24+
version = "9.1.0"
2525

2626
[profile.ci-dev]
2727
incremental = false

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -84,26 +84,26 @@ assert_eq!(
8484
## Benchmark
8585
The following benchmarks were run on a `Apple M4 Max 64GB - macOS 15.2 (24C101)`.
8686

87-
<div align="right"><sub>Sun, Dec 29th, 2024</sub></div>
87+
<div align="right"><sub>Fri, Jan 3rd, 2025</sub></div>
8888

8989
```rs
9090
// Hexify.
91-
array_bytes::Hexify::hexify time: [11.195 µs 11.227 µs 11.264 µs]
92-
const_hex::encode time: [1.0546 µs 1.0823 µs 1.1099 µs]
93-
faster_hex::hex_string time: [12.054 µs 12.103 µs 12.154 µs]
94-
faster_hex::hex_encode_fallback time: [12.170 µs 12.209 µs 12.245 µs]
95-
hex::encode time: [87.014 µs 87.164 µs 87.312 µs]
96-
rustc_hex::to_hex time: [45.022 µs 45.616 µs 46.304 µs]
91+
array_bytes::Hexify::hexify time: [10.978 µs 10.997 µs 11.021 µs]
92+
const_hex::encode time: [941.68 ns 946.55 ns 951.44 ns]
93+
faster_hex::hex_string time: [11.478 µs 11.498 µs 11.519 µs]
94+
faster_hex::hex_encode_fallback time: [11.546 µs 11.563 µs 11.580 µs]
95+
hex::encode time: [85.347 µs 85.524 µs 85.751 µs]
96+
rustc_hex::to_hex time: [46.267 µs 47.009 µs 47.759 µs]
9797
// Dehexify.
98-
array_bytes::Dehexify::dehexify time: [19.601 µs 19.815 µs 20.061 µs]
99-
array_bytes::dehexify_slice_mut time: [20.455 µs 20.471 µs 20.489 µs]
100-
const_hex::decode time: [14.098 µs 14.118 µs 14.137 µs]
101-
faster_hex::hex_decode time: [29.356 µs 29.395 µs 29.435 µs]
102-
faster_hex::hex_decode_unchecked time: [12.089 µs 12.134 µs 12.208 µs]
103-
faster_hex::hex_decode_fallback time: [12.067 µs 12.082 µs 12.098 µs]
104-
hex::decode time: [97.005 µs 98.854 µs 100.65 µs]
105-
hex::decode_to_slice time: [39.262 µs 40.562 µs 42.064 µs]
106-
rustc_hex::from_hex time: [108.91 µs 110.77 µs 112.53 µs]
98+
array_bytes::Dehexify::dehexify time: [19.143 µs 19.156 µs 19.173 µs]
99+
array_bytes::dehexify_slice_mut time: [20.245 µs 20.274 µs 20.307 µs]
100+
const_hex::decode time: [13.861 µs 14.276 µs 14.975 µs]
101+
faster_hex::hex_decode time: [28.499 µs 28.545 µs 28.593 µs]
102+
faster_hex::hex_decode_unchecked time: [11.775 µs 11.799 µs 11.828 µs]
103+
faster_hex::hex_decode_fallback time: [11.818 µs 11.840 µs 11.862 µs]
104+
hex::decode time: [90.870 µs 91.481 µs 92.126 µs]
105+
hex::decode_to_slice time: [32.272 µs 32.553 µs 32.927 µs]
106+
rustc_hex::from_hex time: [106.68 µs 107.45 µs 108.31 µs]
107107
```
108108

109109
To run the benchmarks yourself:

src/hex/dehexify.rs

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ static HEX2DIGIT: [Option<u8>; 256] = {
2929
///
3030
/// # Examples
3131
/// ```
32+
/// use array_bytes::{Dehexify, Error};
33+
/// use smallvec::SmallVec;
34+
///
3235
/// // Unsigned.
3336
/// assert_eq!(u8::dehexify("34"), Ok(52));
3437
/// assert_eq!(u16::dehexify("208"), Ok(520));

src/hex/hexify.rs

+28-103
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ const HEX_CHARS_UPPER: &[u8; 16] = b"0123456789ABCDEF";
4444
/// ```
4545
pub trait Hexify {
4646
/// Hexify `Self`.
47-
fn hexify(self) -> String;
47+
fn hexify(&self) -> String;
4848

4949
/// Hexify `Self` with uppercase.
50-
fn hexify_upper(self) -> String;
50+
fn hexify_upper(&self) -> String;
5151

5252
/// Hexify `Self` with `0x` prefix.
53-
fn hexify_prefixed(self) -> String;
53+
fn hexify_prefixed(&self) -> String;
5454

5555
/// Hexify `Self` with `0x` prefix and uppercase.
56-
fn hexify_prefixed_upper(self) -> String;
56+
fn hexify_prefixed_upper(&self) -> String;
5757
}
5858
macro_rules! hexify_unsigned {
5959
($self:expr, $map:expr) => {{
@@ -103,40 +103,22 @@ macro_rules! impl_hexify_for_unsigned {
103103
($($t:ty,)+) => {
104104
$(
105105
impl Hexify for $t {
106-
fn hexify(self) -> String {
106+
fn hexify(&self) -> String {
107107
hexify_unsigned!(self, HEX_CHARS)
108108
}
109109

110-
fn hexify_upper(self) -> String {
110+
fn hexify_upper(&self) -> String {
111111
hexify_unsigned!(self, HEX_CHARS_UPPER)
112112
}
113113

114-
fn hexify_prefixed(self) -> String {
114+
fn hexify_prefixed(&self) -> String {
115115
hexify_unsigned_prefixed!(self, HEX_CHARS)
116116
}
117117

118-
fn hexify_prefixed_upper(self) -> String {
118+
fn hexify_prefixed_upper(&self) -> String {
119119
hexify_unsigned_prefixed!(self, HEX_CHARS_UPPER)
120120
}
121121
}
122-
123-
impl Hexify for &$t {
124-
fn hexify(self) -> String {
125-
(*self).hexify()
126-
}
127-
128-
fn hexify_upper(self) -> String {
129-
(*self).hexify_upper()
130-
}
131-
132-
fn hexify_prefixed(self) -> String {
133-
(*self).hexify_prefixed()
134-
}
135-
136-
fn hexify_prefixed_upper(self) -> String {
137-
(*self).hexify_prefixed_upper()
138-
}
139-
}
140122
)+
141123
};
142124
}
@@ -202,90 +184,33 @@ macro_rules! hexify_prefixed {
202184
unsafe { String::from_utf8_unchecked(hex_bytes.into_vec()) }
203185
}};
204186
}
205-
impl<const N: usize> Hexify for [u8; N] {
206-
fn hexify(self) -> String {
207-
hexify!(self, HEX_CHARS)
208-
}
187+
macro_rules! hexify_bytes_fns {
188+
() => {
189+
fn hexify(&self) -> String {
190+
hexify!(self, HEX_CHARS)
191+
}
209192

210-
fn hexify_upper(self) -> String {
211-
hexify!(self, HEX_CHARS_UPPER)
212-
}
193+
fn hexify_upper(&self) -> String {
194+
hexify!(self, HEX_CHARS_UPPER)
195+
}
213196

214-
fn hexify_prefixed(self) -> String {
215-
hexify_prefixed!(self, HEX_CHARS)
216-
}
197+
fn hexify_prefixed(&self) -> String {
198+
hexify_prefixed!(self, HEX_CHARS)
199+
}
217200

218-
fn hexify_prefixed_upper(self) -> String {
219-
hexify_prefixed!(self, HEX_CHARS_UPPER)
220-
}
201+
fn hexify_prefixed_upper(&self) -> String {
202+
hexify_prefixed!(self, HEX_CHARS_UPPER)
203+
}
204+
};
221205
}
222-
impl<const N: usize> Hexify for &[u8; N] {
223-
fn hexify(self) -> String {
224-
hexify!(self, HEX_CHARS)
225-
}
226-
227-
fn hexify_upper(self) -> String {
228-
hexify!(self, HEX_CHARS_UPPER)
229-
}
230-
231-
fn hexify_prefixed(self) -> String {
232-
hexify_prefixed!(self, HEX_CHARS)
233-
}
234-
235-
fn hexify_prefixed_upper(self) -> String {
236-
hexify_prefixed!(self, HEX_CHARS_UPPER)
237-
}
206+
impl<const N: usize> Hexify for [u8; N] {
207+
hexify_bytes_fns! {}
238208
}
239-
impl Hexify for &[u8] {
240-
fn hexify(self) -> String {
241-
hexify!(self, HEX_CHARS)
242-
}
243-
244-
fn hexify_upper(self) -> String {
245-
hexify!(self, HEX_CHARS_UPPER)
246-
}
247-
248-
fn hexify_prefixed(self) -> String {
249-
hexify_prefixed!(self, HEX_CHARS)
250-
}
251-
252-
fn hexify_prefixed_upper(self) -> String {
253-
hexify_prefixed!(self, HEX_CHARS_UPPER)
254-
}
209+
impl Hexify for [u8] {
210+
hexify_bytes_fns! {}
255211
}
256212
impl Hexify for Vec<u8> {
257-
fn hexify(self) -> String {
258-
hexify!(self, HEX_CHARS)
259-
}
260-
261-
fn hexify_upper(self) -> String {
262-
hexify!(self, HEX_CHARS_UPPER)
263-
}
264-
265-
fn hexify_prefixed(self) -> String {
266-
hexify_prefixed!(self, HEX_CHARS)
267-
}
268-
269-
fn hexify_prefixed_upper(self) -> String {
270-
hexify_prefixed!(self, HEX_CHARS_UPPER)
271-
}
272-
}
273-
impl Hexify for &Vec<u8> {
274-
fn hexify(self) -> String {
275-
hexify!(self, HEX_CHARS)
276-
}
277-
278-
fn hexify_upper(self) -> String {
279-
hexify!(self, HEX_CHARS_UPPER)
280-
}
281-
282-
fn hexify_prefixed(self) -> String {
283-
hexify_prefixed!(self, HEX_CHARS)
284-
}
285-
286-
fn hexify_prefixed_upper(self) -> String {
287-
hexify_prefixed!(self, HEX_CHARS_UPPER)
288-
}
213+
hexify_bytes_fns! {}
289214
}
290215
#[test]
291216
fn hexify_should_work() {

src/serde.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use crate::{prelude::*, Dehexify, Hexify};
2929
/// r#"{"_0":"5","_1":"2","_2":"0","_3":"01030104"}"#
3030
/// );
3131
/// ```
32-
pub fn ser_hexify<S, T>(value: T, serializer: S) -> Result<S::Ok, S::Error>
32+
pub fn ser_hexify<S, T>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
3333
where
3434
S: Serializer,
3535
T: Hexify,
@@ -60,7 +60,7 @@ where
6060
/// r#"{"_0":"5","_1":"2","_2":"0","_3":"01030104"}"#
6161
/// );
6262
/// ```
63-
pub fn ser_hexify_upper<S, T>(value: T, serializer: S) -> Result<S::Ok, S::Error>
63+
pub fn ser_hexify_upper<S, T>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
6464
where
6565
S: Serializer,
6666
T: Hexify,
@@ -91,7 +91,7 @@ where
9191
/// r#"{"_0":"0x5","_1":"0x2","_2":"0x0","_3":"0x01030104"}"#
9292
/// );
9393
/// ```
94-
pub fn ser_hexify_prefixed<T, S>(value: T, serializer: S) -> Result<S::Ok, S::Error>
94+
pub fn ser_hexify_prefixed<T, S>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
9595
where
9696
T: Hexify,
9797
S: Serializer,
@@ -122,7 +122,7 @@ where
122122
/// r#"{"_0":"0x5","_1":"0x2","_2":"0x0","_3":"0x01030104"}"#
123123
/// );
124124
/// ```
125-
pub fn ser_hexify_prefixed_upper<T, S>(value: T, serializer: S) -> Result<S::Ok, S::Error>
125+
pub fn ser_hexify_prefixed_upper<T, S>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
126126
where
127127
S: Serializer,
128128
T: Hexify,

0 commit comments

Comments
 (0)