chore: various cleanups, version bump 0.4.12

This commit is contained in:
Henry Schimke
2023-12-28 16:29:13 -06:00
parent c93594057b
commit 84a54d420d
12 changed files with 17 additions and 19 deletions

View File

@@ -134,7 +134,7 @@ impl OneDReader for Code93Reader {
impl Code93Reader {
// Note that 'abcd' are dummy characters in place of control characters.
pub const ALPHABET_STRING: &str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%abcd*";
pub const ALPHABET_STRING: &'static str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%abcd*";
pub const ALPHABET: [char; 48] = [
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',