tapirscan 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +241 -0
- package/THIRD_PARTY_NOTICES.md +656 -0
- package/dist/detail-20260914/continuity.d.mts +2 -0
- package/dist/detail-20260914/continuity.mjs +62 -0
- package/dist/detail-20260914/detail-proposals-rich.d.mts +13 -0
- package/dist/detail-20260914/detail-proposals-rich.mjs +53 -0
- package/dist/detail-20260914/direct-recovery.d.mts +28 -0
- package/dist/detail-20260914/direct-recovery.mjs +139 -0
- package/dist/detail-20260914/host.d.mts +40 -0
- package/dist/detail-20260914/host.mjs +280 -0
- package/dist/detail-20260914/scanner.d.mts +12 -0
- package/dist/detail-20260914/scanner.mjs +64 -0
- package/dist/detail-20260914/source-evidence.d.mts +10 -0
- package/dist/detail-20260914/source-evidence.mjs +94 -0
- package/dist/detail-canvas.d.ts +35 -0
- package/dist/detail-canvas.js +73 -0
- package/dist/detail.d.ts +19 -0
- package/dist/detail.js +87 -0
- package/dist/host.d.ts +112 -0
- package/dist/host.js +184 -0
- package/dist/host64.d.ts +112 -0
- package/dist/host64.js +184 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +199 -0
- package/dist/multiformat/formats.d.ts +26 -0
- package/dist/multiformat/formats.js +59 -0
- package/dist/multiformat/geometry.d.ts +32 -0
- package/dist/multiformat/geometry.js +122 -0
- package/dist/multiformat/pixels.d.ts +3 -0
- package/dist/multiformat/pixels.js +36 -0
- package/dist/multiformat/scanner.d.ts +51 -0
- package/dist/multiformat/scanner.js +258 -0
- package/dist/multiformat-host.d.ts +121 -0
- package/dist/multiformat-host.js +207 -0
- package/dist/policy.d.ts +12 -0
- package/dist/policy.js +12 -0
- package/package.json +52 -0
- package/wasm/high-release-20260915.wasm +0 -0
- package/wasm/low-release-20260915.wasm +0 -0
- package/wasm/medium-release-20260915.wasm +0 -0
- package/wasm/multiformat.json +6 -0
- package/wasm/multiformat.wasm +0 -0
- package/wasm/very-high-release-20260915.wasm +0 -0
|
@@ -0,0 +1,656 @@
|
|
|
1
|
+
# Standard table reference
|
|
2
|
+
|
|
3
|
+
The standard tables listed below are attributed to their source encoders. All decoding and localization algorithms in this crate are project-owned. Reference generators are used solely to create test fixtures.
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
#
|
|
7
|
+
# QR Code generator library (Python)
|
|
8
|
+
#
|
|
9
|
+
# Copyright (c) Project Nayuki. (MIT License)
|
|
10
|
+
# https://www.nayuki.io/page/qr-code-generator-library
|
|
11
|
+
#
|
|
12
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
13
|
+
# this software and associated documentation files (the "Software"), to deal in
|
|
14
|
+
# the Software without restriction, including without limitation the rights to
|
|
15
|
+
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
16
|
+
# the Software, and to permit persons to whom the Software is furnished to do so,
|
|
17
|
+
# subject to the following conditions:
|
|
18
|
+
# - The above copyright notice and this permission notice shall be included in
|
|
19
|
+
# all copies or substantial portions of the Software.
|
|
20
|
+
# - The Software is provided "as is", without warranty of any kind, express or
|
|
21
|
+
# implied, including but not limited to the warranties of merchantability,
|
|
22
|
+
# fitness for a particular purpose and noninfringement. In no event shall the
|
|
23
|
+
# authors or copyright holders be liable for any claim, damages or other
|
|
24
|
+
# liability, whether in an action of contract, tort or otherwise, arising from,
|
|
25
|
+
# out of or in connection with the Software or the use or other dealings in the
|
|
26
|
+
# Software.
|
|
27
|
+
#
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## PDF417 symbol tables
|
|
33
|
+
|
|
34
|
+
Only the standard symbol constants are transcribed from https://github.com/ihabunek/pdf417-py/blob/master/pdf417gen/codes.py. The reader and error correction are our own implementation.
|
|
35
|
+
|
|
36
|
+
```text
|
|
37
|
+
PDF417-Py License
|
|
38
|
+
|
|
39
|
+
Copyright (c) 2016 Ivan Habunek <ivan.habunek@gmail.com>
|
|
40
|
+
|
|
41
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
42
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
43
|
+
the Software without restriction, including without limitation the rights to
|
|
44
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
45
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
46
|
+
subject to the following conditions:
|
|
47
|
+
|
|
48
|
+
The above copyright notice and this permission notice shall be included in all
|
|
49
|
+
copies or substantial portions of the Software.
|
|
50
|
+
|
|
51
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
52
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
53
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
54
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
55
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
56
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## DataBar standard tables
|
|
61
|
+
|
|
62
|
+
Only the group, finder and checksum tables are referenced from Zint `backend/rss.h`. No Zint decoder or width-generation implementation is included. Our decoder enumerates bounded integer compositions independently.
|
|
63
|
+
|
|
64
|
+
```text
|
|
65
|
+
libzint - the open source barcode library
|
|
66
|
+
Copyright (C) 2007-2025 Robin Stuart <rstuart114@gmail.com>
|
|
67
|
+
|
|
68
|
+
Redistribution and use in source and binary forms, with or without
|
|
69
|
+
modification, are permitted provided that the following conditions
|
|
70
|
+
are met:
|
|
71
|
+
|
|
72
|
+
1. Redistributions of source code must retain the above copyright
|
|
73
|
+
notice, this list of conditions and the following disclaimer.
|
|
74
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
75
|
+
notice, this list of conditions and the following disclaimer in the
|
|
76
|
+
documentation and/or other materials provided with the distribution.
|
|
77
|
+
3. Neither the name of the project nor the names of its contributors
|
|
78
|
+
may be used to endorse or promote products derived from this software
|
|
79
|
+
without specific prior written permission.
|
|
80
|
+
|
|
81
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
82
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
83
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
84
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
85
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
86
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
87
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
88
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
89
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
90
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
91
|
+
SUCH DAMAGE.
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Text conversion and serialization dependencies
|
|
96
|
+
|
|
97
|
+
These supply character-set conversion and JSON serialization only. They do not decode barcodes. Versions are pinned in Cargo.lock.
|
|
98
|
+
|
|
99
|
+
### encoding_rs-0.8.35
|
|
100
|
+
|
|
101
|
+
```text
|
|
102
|
+
encoding_rs is copyright Mozilla Foundation.
|
|
103
|
+
|
|
104
|
+
Licensed under the Apache License, Version 2.0
|
|
105
|
+
<LICENSE-APACHE or
|
|
106
|
+
https://www.apache.org/licenses/LICENSE-2.0> or the MIT
|
|
107
|
+
license <LICENSE-MIT or https://opensource.org/licenses/MIT>,
|
|
108
|
+
at your option. All files in the project carrying such
|
|
109
|
+
notice may not be copied, modified, or distributed except
|
|
110
|
+
according to those terms.
|
|
111
|
+
|
|
112
|
+
This crate includes data derived from the data files supplied
|
|
113
|
+
with the WHATWG Encoding Standard, which, when incorporated into
|
|
114
|
+
source code, are licensed under the BSD 3-Clause License
|
|
115
|
+
<LICENSE-WHATWG>.
|
|
116
|
+
|
|
117
|
+
Test code within encoding_rs is dedicated to the Public Domain when so
|
|
118
|
+
designated (see the individual files for PD/CC0-dedicated sections).
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
```text
|
|
123
|
+
Copyright Mozilla Foundation
|
|
124
|
+
|
|
125
|
+
Permission is hereby granted, free of charge, to any
|
|
126
|
+
person obtaining a copy of this software and associated
|
|
127
|
+
documentation files (the "Software"), to deal in the
|
|
128
|
+
Software without restriction, including without
|
|
129
|
+
limitation the rights to use, copy, modify, merge,
|
|
130
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
131
|
+
the Software, and to permit persons to whom the Software
|
|
132
|
+
is furnished to do so, subject to the following
|
|
133
|
+
conditions:
|
|
134
|
+
|
|
135
|
+
The above copyright notice and this permission notice
|
|
136
|
+
shall be included in all copies or substantial portions
|
|
137
|
+
of the Software.
|
|
138
|
+
|
|
139
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
140
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
141
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
142
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
143
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
144
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
145
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
146
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
147
|
+
DEALINGS IN THE SOFTWARE.
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
```text
|
|
152
|
+
Copyright © WHATWG (Apple, Google, Mozilla, Microsoft).
|
|
153
|
+
|
|
154
|
+
Redistribution and use in source and binary forms, with or without
|
|
155
|
+
modification, are permitted provided that the following conditions are met:
|
|
156
|
+
|
|
157
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
158
|
+
list of conditions and the following disclaimer.
|
|
159
|
+
|
|
160
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
161
|
+
this list of conditions and the following disclaimer in the documentation
|
|
162
|
+
and/or other materials provided with the distribution.
|
|
163
|
+
|
|
164
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
165
|
+
contributors may be used to endorse or promote products derived from
|
|
166
|
+
this software without specific prior written permission.
|
|
167
|
+
|
|
168
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
169
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
170
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
171
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
172
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
173
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
174
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
175
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
176
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
177
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
178
|
+
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
### serde-1.0.228
|
|
182
|
+
|
|
183
|
+
```text
|
|
184
|
+
Permission is hereby granted, free of charge, to any
|
|
185
|
+
person obtaining a copy of this software and associated
|
|
186
|
+
documentation files (the "Software"), to deal in the
|
|
187
|
+
Software without restriction, including without
|
|
188
|
+
limitation the rights to use, copy, modify, merge,
|
|
189
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
190
|
+
the Software, and to permit persons to whom the Software
|
|
191
|
+
is furnished to do so, subject to the following
|
|
192
|
+
conditions:
|
|
193
|
+
|
|
194
|
+
The above copyright notice and this permission notice
|
|
195
|
+
shall be included in all copies or substantial portions
|
|
196
|
+
of the Software.
|
|
197
|
+
|
|
198
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
199
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
200
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
201
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
202
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
203
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
204
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
205
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
206
|
+
DEALINGS IN THE SOFTWARE.
|
|
207
|
+
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
### serde_json-1.0.150
|
|
211
|
+
|
|
212
|
+
```text
|
|
213
|
+
Permission is hereby granted, free of charge, to any
|
|
214
|
+
person obtaining a copy of this software and associated
|
|
215
|
+
documentation files (the "Software"), to deal in the
|
|
216
|
+
Software without restriction, including without
|
|
217
|
+
limitation the rights to use, copy, modify, merge,
|
|
218
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
219
|
+
the Software, and to permit persons to whom the Software
|
|
220
|
+
is furnished to do so, subject to the following
|
|
221
|
+
conditions:
|
|
222
|
+
|
|
223
|
+
The above copyright notice and this permission notice
|
|
224
|
+
shall be included in all copies or substantial portions
|
|
225
|
+
of the Software.
|
|
226
|
+
|
|
227
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
228
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
229
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
230
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
231
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
232
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
233
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
234
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
235
|
+
DEALINGS IN THE SOFTWARE.
|
|
236
|
+
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
## MaxiCode standard tables
|
|
240
|
+
|
|
241
|
+
Only the standard module sequence and character maps are extracted from Zint `backend/maxicode.h` by `generate_maxicode_tables.py`. No external decoder is included.
|
|
242
|
+
|
|
243
|
+
```text
|
|
244
|
+
libzint - the open source barcode library
|
|
245
|
+
Copyright (C) 2008-2024 Robin Stuart <rstuart114@gmail.com>
|
|
246
|
+
|
|
247
|
+
Redistribution and use in source and binary forms, with or without
|
|
248
|
+
modification, are permitted provided that the following conditions
|
|
249
|
+
are met:
|
|
250
|
+
|
|
251
|
+
1. Redistributions of source code must retain the above copyright
|
|
252
|
+
notice, this list of conditions and the following disclaimer.
|
|
253
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
254
|
+
notice, this list of conditions and the following disclaimer in the
|
|
255
|
+
documentation and/or other materials provided with the distribution.
|
|
256
|
+
3. Neither the name of the project nor the names of its contributors
|
|
257
|
+
may be used to endorse or promote products derived from this software
|
|
258
|
+
without specific prior written permission.
|
|
259
|
+
|
|
260
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
261
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
262
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
263
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
264
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
265
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
266
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
267
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
268
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
269
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
270
|
+
SUCH DAMAGE.
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
## Remaining locked dependencies
|
|
274
|
+
|
|
275
|
+
The following notices cover transitive serialization/text dependencies and build-time proc-macro dependencies. Package versions and registry checksums are pinned in Cargo.lock.
|
|
276
|
+
|
|
277
|
+
### cfg-if-1.0.4
|
|
278
|
+
|
|
279
|
+
LICENSE-MIT
|
|
280
|
+
|
|
281
|
+
```text
|
|
282
|
+
Copyright (c) 2014 Alex Crichton
|
|
283
|
+
|
|
284
|
+
Permission is hereby granted, free of charge, to any
|
|
285
|
+
person obtaining a copy of this software and associated
|
|
286
|
+
documentation files (the "Software"), to deal in the
|
|
287
|
+
Software without restriction, including without
|
|
288
|
+
limitation the rights to use, copy, modify, merge,
|
|
289
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
290
|
+
the Software, and to permit persons to whom the Software
|
|
291
|
+
is furnished to do so, subject to the following
|
|
292
|
+
conditions:
|
|
293
|
+
|
|
294
|
+
The above copyright notice and this permission notice
|
|
295
|
+
shall be included in all copies or substantial portions
|
|
296
|
+
of the Software.
|
|
297
|
+
|
|
298
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
299
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
300
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
301
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
302
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
303
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
304
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
305
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
306
|
+
DEALINGS IN THE SOFTWARE.
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### itoa-1.0.18
|
|
310
|
+
|
|
311
|
+
LICENSE-MIT
|
|
312
|
+
|
|
313
|
+
```text
|
|
314
|
+
Permission is hereby granted, free of charge, to any
|
|
315
|
+
person obtaining a copy of this software and associated
|
|
316
|
+
documentation files (the "Software"), to deal in the
|
|
317
|
+
Software without restriction, including without
|
|
318
|
+
limitation the rights to use, copy, modify, merge,
|
|
319
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
320
|
+
the Software, and to permit persons to whom the Software
|
|
321
|
+
is furnished to do so, subject to the following
|
|
322
|
+
conditions:
|
|
323
|
+
|
|
324
|
+
The above copyright notice and this permission notice
|
|
325
|
+
shall be included in all copies or substantial portions
|
|
326
|
+
of the Software.
|
|
327
|
+
|
|
328
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
329
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
330
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
331
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
332
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
333
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
334
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
335
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
336
|
+
DEALINGS IN THE SOFTWARE.
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
### memchr-2.8.3
|
|
340
|
+
|
|
341
|
+
LICENSE-MIT
|
|
342
|
+
|
|
343
|
+
```text
|
|
344
|
+
The MIT License (MIT)
|
|
345
|
+
|
|
346
|
+
Copyright (c) 2015 Andrew Gallant
|
|
347
|
+
|
|
348
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
349
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
350
|
+
in the Software without restriction, including without limitation the rights
|
|
351
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
352
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
353
|
+
furnished to do so, subject to the following conditions:
|
|
354
|
+
|
|
355
|
+
The above copyright notice and this permission notice shall be included in
|
|
356
|
+
all copies or substantial portions of the Software.
|
|
357
|
+
|
|
358
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
359
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
360
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
361
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
362
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
363
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
364
|
+
THE SOFTWARE.
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
### proc-macro2-1.0.107
|
|
368
|
+
|
|
369
|
+
LICENSE-MIT
|
|
370
|
+
|
|
371
|
+
```text
|
|
372
|
+
Permission is hereby granted, free of charge, to any
|
|
373
|
+
person obtaining a copy of this software and associated
|
|
374
|
+
documentation files (the "Software"), to deal in the
|
|
375
|
+
Software without restriction, including without
|
|
376
|
+
limitation the rights to use, copy, modify, merge,
|
|
377
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
378
|
+
the Software, and to permit persons to whom the Software
|
|
379
|
+
is furnished to do so, subject to the following
|
|
380
|
+
conditions:
|
|
381
|
+
|
|
382
|
+
The above copyright notice and this permission notice
|
|
383
|
+
shall be included in all copies or substantial portions
|
|
384
|
+
of the Software.
|
|
385
|
+
|
|
386
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
387
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
388
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
389
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
390
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
391
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
392
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
393
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
394
|
+
DEALINGS IN THE SOFTWARE.
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
### quote-1.0.47
|
|
398
|
+
|
|
399
|
+
LICENSE-MIT
|
|
400
|
+
|
|
401
|
+
```text
|
|
402
|
+
Permission is hereby granted, free of charge, to any
|
|
403
|
+
person obtaining a copy of this software and associated
|
|
404
|
+
documentation files (the "Software"), to deal in the
|
|
405
|
+
Software without restriction, including without
|
|
406
|
+
limitation the rights to use, copy, modify, merge,
|
|
407
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
408
|
+
the Software, and to permit persons to whom the Software
|
|
409
|
+
is furnished to do so, subject to the following
|
|
410
|
+
conditions:
|
|
411
|
+
|
|
412
|
+
The above copyright notice and this permission notice
|
|
413
|
+
shall be included in all copies or substantial portions
|
|
414
|
+
of the Software.
|
|
415
|
+
|
|
416
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
417
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
418
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
419
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
420
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
421
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
422
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
423
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
424
|
+
DEALINGS IN THE SOFTWARE.
|
|
425
|
+
```
|
|
426
|
+
|
|
427
|
+
### serde_core-1.0.228
|
|
428
|
+
|
|
429
|
+
LICENSE-MIT
|
|
430
|
+
|
|
431
|
+
```text
|
|
432
|
+
Permission is hereby granted, free of charge, to any
|
|
433
|
+
person obtaining a copy of this software and associated
|
|
434
|
+
documentation files (the "Software"), to deal in the
|
|
435
|
+
Software without restriction, including without
|
|
436
|
+
limitation the rights to use, copy, modify, merge,
|
|
437
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
438
|
+
the Software, and to permit persons to whom the Software
|
|
439
|
+
is furnished to do so, subject to the following
|
|
440
|
+
conditions:
|
|
441
|
+
|
|
442
|
+
The above copyright notice and this permission notice
|
|
443
|
+
shall be included in all copies or substantial portions
|
|
444
|
+
of the Software.
|
|
445
|
+
|
|
446
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
447
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
448
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
449
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
450
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
451
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
452
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
453
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
454
|
+
DEALINGS IN THE SOFTWARE.
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
### serde_derive-1.0.228
|
|
458
|
+
|
|
459
|
+
LICENSE-MIT
|
|
460
|
+
|
|
461
|
+
```text
|
|
462
|
+
Permission is hereby granted, free of charge, to any
|
|
463
|
+
person obtaining a copy of this software and associated
|
|
464
|
+
documentation files (the "Software"), to deal in the
|
|
465
|
+
Software without restriction, including without
|
|
466
|
+
limitation the rights to use, copy, modify, merge,
|
|
467
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
468
|
+
the Software, and to permit persons to whom the Software
|
|
469
|
+
is furnished to do so, subject to the following
|
|
470
|
+
conditions:
|
|
471
|
+
|
|
472
|
+
The above copyright notice and this permission notice
|
|
473
|
+
shall be included in all copies or substantial portions
|
|
474
|
+
of the Software.
|
|
475
|
+
|
|
476
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
477
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
478
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
479
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
480
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
481
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
482
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
483
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
484
|
+
DEALINGS IN THE SOFTWARE.
|
|
485
|
+
```
|
|
486
|
+
|
|
487
|
+
### syn-2.0.119
|
|
488
|
+
|
|
489
|
+
LICENSE-MIT
|
|
490
|
+
|
|
491
|
+
```text
|
|
492
|
+
Permission is hereby granted, free of charge, to any
|
|
493
|
+
person obtaining a copy of this software and associated
|
|
494
|
+
documentation files (the "Software"), to deal in the
|
|
495
|
+
Software without restriction, including without
|
|
496
|
+
limitation the rights to use, copy, modify, merge,
|
|
497
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
498
|
+
the Software, and to permit persons to whom the Software
|
|
499
|
+
is furnished to do so, subject to the following
|
|
500
|
+
conditions:
|
|
501
|
+
|
|
502
|
+
The above copyright notice and this permission notice
|
|
503
|
+
shall be included in all copies or substantial portions
|
|
504
|
+
of the Software.
|
|
505
|
+
|
|
506
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
507
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
508
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
509
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
510
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
511
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
512
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
513
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
514
|
+
DEALINGS IN THE SOFTWARE.
|
|
515
|
+
```
|
|
516
|
+
|
|
517
|
+
### unicode-ident-1.0.24
|
|
518
|
+
|
|
519
|
+
LICENSE-MIT
|
|
520
|
+
|
|
521
|
+
```text
|
|
522
|
+
Permission is hereby granted, free of charge, to any
|
|
523
|
+
person obtaining a copy of this software and associated
|
|
524
|
+
documentation files (the "Software"), to deal in the
|
|
525
|
+
Software without restriction, including without
|
|
526
|
+
limitation the rights to use, copy, modify, merge,
|
|
527
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
528
|
+
the Software, and to permit persons to whom the Software
|
|
529
|
+
is furnished to do so, subject to the following
|
|
530
|
+
conditions:
|
|
531
|
+
|
|
532
|
+
The above copyright notice and this permission notice
|
|
533
|
+
shall be included in all copies or substantial portions
|
|
534
|
+
of the Software.
|
|
535
|
+
|
|
536
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
537
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
538
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
539
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
540
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
541
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
542
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
543
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
544
|
+
DEALINGS IN THE SOFTWARE.
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
LICENSE-UNICODE
|
|
548
|
+
|
|
549
|
+
```text
|
|
550
|
+
UNICODE LICENSE V3
|
|
551
|
+
|
|
552
|
+
COPYRIGHT AND PERMISSION NOTICE
|
|
553
|
+
|
|
554
|
+
Copyright © 1991-2023 Unicode, Inc.
|
|
555
|
+
|
|
556
|
+
NOTICE TO USER: Carefully read the following legal agreement. BY
|
|
557
|
+
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
|
|
558
|
+
SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
|
|
559
|
+
TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
|
|
560
|
+
DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
|
|
561
|
+
|
|
562
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
563
|
+
copy of data files and any associated documentation (the "Data Files") or
|
|
564
|
+
software and any associated documentation (the "Software") to deal in the
|
|
565
|
+
Data Files or Software without restriction, including without limitation
|
|
566
|
+
the rights to use, copy, modify, merge, publish, distribute, and/or sell
|
|
567
|
+
copies of the Data Files or Software, and to permit persons to whom the
|
|
568
|
+
Data Files or Software are furnished to do so, provided that either (a)
|
|
569
|
+
this copyright and permission notice appear with all copies of the Data
|
|
570
|
+
Files or Software, or (b) this copyright and permission notice appear in
|
|
571
|
+
associated Documentation.
|
|
572
|
+
|
|
573
|
+
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
574
|
+
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
575
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
576
|
+
THIRD PARTY RIGHTS.
|
|
577
|
+
|
|
578
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
|
|
579
|
+
BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
|
|
580
|
+
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
581
|
+
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
582
|
+
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
|
|
583
|
+
FILES OR SOFTWARE.
|
|
584
|
+
|
|
585
|
+
Except as contained in this notice, the name of a copyright holder shall
|
|
586
|
+
not be used in advertising or otherwise to promote the sale, use or other
|
|
587
|
+
dealings in these Data Files or Software without prior written
|
|
588
|
+
authorization of the copyright holder.
|
|
589
|
+
```
|
|
590
|
+
|
|
591
|
+
### zmij-1.0.23
|
|
592
|
+
|
|
593
|
+
LICENSE-MIT
|
|
594
|
+
|
|
595
|
+
```text
|
|
596
|
+
Permission is hereby granted, free of charge, to any
|
|
597
|
+
person obtaining a copy of this software and associated
|
|
598
|
+
documentation files (the "Software"), to deal in the
|
|
599
|
+
Software without restriction, including without
|
|
600
|
+
limitation the rights to use, copy, modify, merge,
|
|
601
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
602
|
+
the Software, and to permit persons to whom the Software
|
|
603
|
+
is furnished to do so, subject to the following
|
|
604
|
+
conditions:
|
|
605
|
+
|
|
606
|
+
The above copyright notice and this permission notice
|
|
607
|
+
shall be included in all copies or substantial portions
|
|
608
|
+
of the Software.
|
|
609
|
+
|
|
610
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
611
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
612
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
613
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
614
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
615
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
616
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
617
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
618
|
+
DEALINGS IN THE SOFTWARE.
|
|
619
|
+
```
|
|
620
|
+
|
|
621
|
+
## CP437 character mapping
|
|
622
|
+
|
|
623
|
+
The standard character mapping in `encoding_tables.rs` is transposed from Zint
|
|
624
|
+
`backend/eci_sb.h`, generated upstream from the Unicode CP437 mapping. It is
|
|
625
|
+
character conversion data, not a barcode decoder. The generator records the
|
|
626
|
+
exact input hash.
|
|
627
|
+
|
|
628
|
+
```text
|
|
629
|
+
libzint - the open source barcode library
|
|
630
|
+
Copyright (C) 2021-2025 Robin Stuart <rstuart114@gmail.com>
|
|
631
|
+
|
|
632
|
+
Redistribution and use in source and binary forms, with or without
|
|
633
|
+
modification, are permitted provided that the following conditions
|
|
634
|
+
are met:
|
|
635
|
+
|
|
636
|
+
1. Redistributions of source code must retain the above copyright
|
|
637
|
+
notice, this list of conditions and the following disclaimer.
|
|
638
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
639
|
+
notice, this list of conditions and the following disclaimer in the
|
|
640
|
+
documentation and/or other materials provided with the distribution.
|
|
641
|
+
3. Neither the name of the project nor the names of its contributors
|
|
642
|
+
may be used to endorse or promote products derived from this software
|
|
643
|
+
without specific prior written permission.
|
|
644
|
+
|
|
645
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
646
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
647
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
648
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
649
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
650
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
651
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
652
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
653
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
654
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
655
|
+
SUCH DAMAGE.
|
|
656
|
+
```
|