Skip to content

Commit b070537

Browse files
authored
Release v5.1.0 (#30)
1 parent c652df6 commit b070537

File tree

7 files changed

+36
-21
lines changed

7 files changed

+36
-21
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v5.1.0
2+
- Rename error fields.
3+
14
## v5.0.0
25
- Optimize algorithm.
36
- Improve documentation.

Cargo.lock

+1-1
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
@@ -18,7 +18,7 @@ license = "Apache-2.0/GPL-3.0"
1818
name = "array-bytes"
1919
readme = "README.md"
2020
repository = "https://github.com/hack-ink/array-bytes"
21-
version = "5.0.0"
21+
version = "5.1.0"
2222

2323
[dependencies]
2424
serde = { version = "1.0", optional = true, default-features = false }

fuzz/Cargo.lock

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

fuzz/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ edition = "2021"
44
metadata = { cargo-fuzz = true }
55
name = "array-bytes-fuzz"
66
publish = false
7-
version = "5.0.0"
7+
version = "5.1.0"
88

99
[dependencies]
10-
array-bytes = { version = "5.0", path = ".." }
10+
array-bytes = { version = "5.1", path = ".." }
1111
libfuzzer-sys = { version = "0.4" }
1212

1313
[workspace]

src/lib.rs

+15-9
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ pub enum Error {
7272
/// The length must not be odd.
7373
InvalidLength,
7474
/// Found the invalid character at `index`.
75-
InvalidChar {
75+
InvalidCharacter {
7676
/// The invalid character.
77-
char: char,
77+
character: char,
7878
/// The invalid character's index.
7979
index: usize,
8080
},
@@ -246,7 +246,7 @@ where
246246
pub fn hex_bytes2hex_str(bytes: &[u8]) -> Result<&str> {
247247
for (i, byte) in bytes.iter().enumerate().skip(if bytes.starts_with(b"0x") { 2 } else { 0 }) {
248248
if !is_hex_ascii(byte) {
249-
Err(Error::InvalidChar { char: *byte as _, index: i })?;
249+
Err(Error::InvalidCharacter { character: *byte as _, index: i })?;
250250
}
251251
}
252252

@@ -360,17 +360,20 @@ where
360360

361361
for i in (0..hex.len()).step_by(2) {
362362
let Some(str) = hex.get(i..i + 2) else {
363-
Err(Error::InvalidChar { char: hex.as_bytes()[i] as _, index: i })?
363+
Err(Error::InvalidCharacter { character: hex.as_bytes()[i] as _, index: i })?
364364
};
365365

366366
match u8::from_str_radix(str, 16) {
367367
Ok(byte_) => bytes.push(byte_),
368368
Err(e) => {
369369
if !is_hex_ascii(&hex.as_bytes()[i]) {
370-
Err(Error::InvalidChar { char: hex.as_bytes()[i] as _, index: i })?;
370+
Err(Error::InvalidCharacter { character: hex.as_bytes()[i] as _, index: i })?;
371371
}
372372
if !is_hex_ascii(&hex.as_bytes()[i + 1]) {
373-
Err(Error::InvalidChar { char: hex.as_bytes()[i + 1] as _, index: i + 1 })?;
373+
Err(Error::InvalidCharacter {
374+
character: hex.as_bytes()[i + 1] as _,
375+
index: i + 1,
376+
})?;
374377
}
375378

376379
// This will never happen, but for more safety
@@ -432,17 +435,20 @@ where
432435

433436
for (byte, i) in slice.iter_mut().zip((0..hex.len()).step_by(2)) {
434437
let Some(str) = hex.get(i..i + 2) else {
435-
Err(Error::InvalidChar { char: hex.as_bytes()[i] as _, index: i })?
438+
Err(Error::InvalidCharacter { character: hex.as_bytes()[i] as _, index: i })?
436439
};
437440

438441
match u8::from_str_radix(str, 16) {
439442
Ok(byte_) => *byte = byte_,
440443
Err(e) => {
441444
if !is_hex_ascii(&hex.as_bytes()[i]) {
442-
Err(Error::InvalidChar { char: hex.as_bytes()[i] as _, index: i })?;
445+
Err(Error::InvalidCharacter { character: hex.as_bytes()[i] as _, index: i })?;
443446
}
444447
if !is_hex_ascii(&hex.as_bytes()[i + 1]) {
445-
Err(Error::InvalidChar { char: hex.as_bytes()[i + 1] as _, index: i + 1 })?;
448+
Err(Error::InvalidCharacter {
449+
character: hex.as_bytes()[i + 1] as _,
450+
index: i + 1,
451+
})?;
446452
}
447453

448454
// This will never happen, but for more safety

src/test.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ fn hex_bytes2hex_str_should_work() {
9595

9696
assert_eq!(
9797
hex_bytes2hex_str(b"4c6f766 5204a616e6520466f7265766572"),
98-
Err(Error::InvalidChar { char: ' ', index: 7 }),
98+
Err(Error::InvalidCharacter { character: ' ', index: 7 }),
9999
);
100100
assert_eq!(
101101
hex_bytes2hex_str(b"4c6f766520 4a616e6520466f7265766572"),
102-
Err(Error::InvalidChar { char: ' ', index: 10 }),
102+
Err(Error::InvalidCharacter { character: ' ', index: 10 }),
103103
);
104104
}
105105

@@ -134,8 +134,8 @@ fn hex2bytes_should_work() {
134134
assert_eq!(hex2bytes("我爱你"), Err(Error::InvalidLength));
135135
assert_eq!(hex2bytes("0x我爱你"), Err(Error::InvalidLength));
136136

137-
assert_eq!(hex2bytes("我爱你 "), Err(Error::InvalidChar { char: 'æ', index: 0 }));
138-
assert_eq!(hex2bytes(" 我爱你"), Err(Error::InvalidChar { char: ' ', index: 0 }));
137+
assert_eq!(hex2bytes("我爱你 "), Err(Error::InvalidCharacter { character: 'æ', index: 0 }));
138+
assert_eq!(hex2bytes(" 我爱你"), Err(Error::InvalidCharacter { character: ' ', index: 0 }));
139139
}
140140

141141
#[test]
@@ -172,8 +172,14 @@ fn hex2slice_should_work() {
172172
assert_eq!(hex2slice("00", &mut []), Err(Error::MismatchedLength { expect: 1 }));
173173
assert_eq!(hex2slice("0x0001", &mut []), Err(Error::MismatchedLength { expect: 2 }));
174174

175-
assert_eq!(hex2slice("fg", &mut [0]), Err(Error::InvalidChar { char: 'g', index: 1 }));
176-
assert_eq!(hex2slice("0xyz", &mut [0]), Err(Error::InvalidChar { char: 'y', index: 0 }));
175+
assert_eq!(
176+
hex2slice("fg", &mut [0]),
177+
Err(Error::InvalidCharacter { character: 'g', index: 1 })
178+
);
179+
assert_eq!(
180+
hex2slice("0xyz", &mut [0]),
181+
Err(Error::InvalidCharacter { character: 'y', index: 0 })
182+
);
177183
}
178184

179185
#[test]

0 commit comments

Comments
 (0)