Sam Wilson
169f2f6073
Allow disabling image features
2024-01-11 12:38:01 -05:00
Henry Schimke
9c9aab7b90
perf: move regex compilation to Lazy init
2024-01-04 13:07:51 -06:00
Henry Schimke
6836fdb180
chore: more clippy fixes
2024-01-04 12:34:40 -06:00
Henry Schimke
d068c19fb8
chore: cleanup some clippy errors
2024-01-04 12:26:47 -06:00
Henry Schimke
d98c5ca596
fix: remove unecessary arrayContains function frome coda_bar_reader and writer
2024-01-04 11:23:23 -06:00
Henry Schimke
4d00d51fff
chore: clippy fixes, largely removing unecessary return statements
2024-01-02 17:15:28 -06:00
Henry Schimke
c3618919d7
chore: version update and cargo fmt
2024-01-02 17:10:56 -06:00
Henry A Schimke
e04354cb4a
Merge pull request #41 from rxing-core/client_build_optional
...
feat: make client builds optional
2024-01-02 16:59:40 -06:00
Henry A Schimke
aa7556d1eb
Merge pull request #39 from cpwood/main
...
Telepen support
2024-01-02 16:57:58 -06:00
Chris Wood
d43c525d3b
Fixes after PR review
2024-01-02 22:42:03 +00:00
Chris Wood
f315df8456
Add Telepen numeric encoding hint
2024-01-02 16:33:44 +00:00
Chris Wood
93bbb676d8
Further test cases
2024-01-02 15:43:34 +00:00
Chris Wood
8f9f0bfa42
Code refactor and numeric support
2023-12-31 21:30:41 +00:00
Henry Schimke
0ec987b982
fix: src/oned/rss/expanded/rss_expanded_image_2_result_test_case.rs test should not be run when client_support is disabled
2023-12-31 13:40:00 -06:00
Chris Wood
5fac0353e6
Code tidy-up
2023-12-31 11:43:23 +00:00
Chris Wood
75d56b7282
Add Telepen read / write functionality
2023-12-31 09:40:35 +00:00
Henry Schimke
84a54d420d
chore: various cleanups, version bump 0.4.12
2023-12-28 16:29:13 -06:00
Henry Schimke
3d8c4f9668
update to 0.4.10 with #36 and dependency updates
2023-11-06 09:53:08 -06:00
Henry Schimke
62e49b376d
clippy --fix suggestions
2023-10-28 11:11:30 -05:00
Henry Schimke
5ea03cc066
updated cargo fmt
2023-10-28 11:04:14 -05:00
Henry Schimke
4c9ec95d00
basic clippy fixes
2023-10-28 10:57:42 -05:00
Henry Schimke
bcb97f639e
update to 0.4.8
2023-07-13 11:54:15 -05:00
Henry Schimke
3fc068f49b
swap point_f and point functions
2023-05-04 14:50:32 -05:00
Henry Schimke
634722a806
cargo clippy --fix
2023-05-04 13:45:57 -05:00
Henry
ef999a4eb0
clippy fix
2023-04-28 19:41:23 -05:00
Henry
2afc6be3dc
cargo fix
2023-04-28 19:15:25 -05:00
Henry Schimke
7b6a80e4ac
move some todo!() to unimplemented!()
2023-03-21 11:26:30 -05:00
Steve Cook
3b3d703b4e
Add resets for the RSS14 and RSSExpanded reader states
2023-03-04 11:53:32 -05:00
Steve Cook
e67c1070c7
Cargo fmt + Cargo clippy
2023-03-02 08:57:30 -05:00
Steve Cook
f25f762564
Conserve state for RSS readers within MultiFormatReader and MultiFormatOneDReader
2023-03-02 08:55:48 -05:00
Steve Cook
37789a9395
Remove unused imports and fix file naming
2023-03-02 00:10:39 -05:00
Steve Cook
d2ab7de5dd
Add error reporting to tests
2023-03-02 00:06:30 -05:00
Steve Cook
70b1ef270f
Update tests
2023-03-01 22:49:07 -05:00
Steve Cook
a9bc58108c
Initial generics
2023-03-01 22:08:12 -05:00
Steve Cook
b561bd77c3
Update macro and cargo fmt
2023-03-01 13:43:21 -05:00
Steve Cook
51fcc98b34
Merge branch 'main' into thiserror
...
# Conflicts:
# src/aztec/decoder.rs
# src/datamatrix/decoder/decoded_bit_stream_parser.rs
2023-03-01 13:39:30 -05:00
Steve Cook
f8b29f37db
Use thiserror for error handling with less boilerplate
2023-02-20 09:41:28 -05:00
Vukašin Stepanović
c77f0af6f6
remove unnecessary number suffixes
2023-02-17 16:12:23 +00:00
Vukašin Stepanović
4c9987425d
Merge branch 'main' into pr/point_refactor
2023-02-16 16:43:24 +00:00
Vukašin Stepanović
072d3d0ec7
change PointCallback to accept Point instead of ResultPoint
2023-02-16 16:20:58 +00:00
Vukašin Stepanović
0992e85e6c
remove ResultPoint trait uses of Point
...
Point already has `x` and `y` properties, so accessing
them with `getX()` and `getY()` is needlessly verbose.
These calls have been removed, though the trait impl is
still presen for the time being, since the OneDReader
proc macro requires it.
2023-02-16 15:54:07 +00:00
Vukašin Stepanović
39b4866e47
add point(x: f32, y: f32) function
...
Shorter than writing `Point::new`
2023-02-16 11:20:03 +00:00
Vukašin Stepanović
844ffc3b81
cargo fmt
2023-02-16 08:40:57 +00:00
Vukašin Stepanović
05e377e85b
add aliases so the OneDReader proc macro compiles
...
Currently it's not possible to rename RXingResultPoint
to Point cleanly, since the external OneDReader proc macro
makes use of them. For the time being, simple aliases
are introduced to get the code to compile, but the plan
is to remove them at a later point.
2023-02-16 08:31:35 +00:00
Vukašin Stepanović
dbc6ca4e55
wip: Search & replace RXingResultPoint with Point
...
Build fails because the OneDReader proc macro expects
that a RXingResultPoint type exists.
2023-02-16 08:25:32 +00:00
Vukašin Stepanović
41c5615ee3
Merge branch 'main' into pr/exception_helpers
2023-02-16 07:15:51 +00:00
Vukašin Stepanović
935519ced5
rename helper methods
2023-02-15 12:52:59 +00:00
Vukašin Stepanović
528ddea41c
remove .to_owned() calls on &str in exceptions
2023-02-15 11:12:28 +00:00
Vukašin Stepanović
722ce78fd0
refactor to use exception helper factories
2023-02-15 10:46:21 +00:00
Vukašin Stepanović
8ee616d96b
refactor to use common result type
2023-02-14 23:01:05 +00:00