rsplotlib 0.1.9__cp314-cp314-win_amd64.whl
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.
- rsplotlib/__init__.py +23 -0
- rsplotlib/_font_resolver.py +167 -0
- rsplotlib/core/__init__.py +2 -0
- rsplotlib/core/api.py +728 -0
- rsplotlib/figure/__init__.py +2 -0
- rsplotlib/figure/_defaults.py +13 -0
- rsplotlib/gridspec.py +6 -0
- rsplotlib/layout/__init__.py +2 -0
- rsplotlib/layout/gridspec.py +161 -0
- rsplotlib/pylab.py +22 -0
- rsplotlib/pyplot.py +1194 -0
- rsplotlib/rsplotlib.cp314-win_amd64.pyd +0 -0
- rsplotlib/ticker.py +6 -0
- rsplotlib/ticks/__init__.py +2 -0
- rsplotlib/ticks/ticker.py +269 -0
- rsplotlib/utils/__init__.py +2 -0
- rsplotlib/utils/_font_resolver.py +34 -0
- rsplotlib/utils/_rcparams.py +101 -0
- rsplotlib/utils/style.py +67 -0
- rsplotlib-0.1.9.dist-info/METADATA +782 -0
- rsplotlib-0.1.9.dist-info/RECORD +24 -0
- rsplotlib-0.1.9.dist-info/WHEEL +4 -0
- rsplotlib-0.1.9.dist-info/licenses/LICENSE +21 -0
- rsplotlib-0.1.9.dist-info/sboms/rsplotlib.cyclonedx.json +2028 -0
|
@@ -0,0 +1,2028 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bomFormat": "CycloneDX",
|
|
3
|
+
"specVersion": "1.5",
|
|
4
|
+
"version": 1,
|
|
5
|
+
"serialNumber": "urn:uuid:cf4b0158-a1b8-4a0b-93b8-c7e2742660f7",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"timestamp": "2026-07-03T06:46:39.195945600Z",
|
|
8
|
+
"tools": [
|
|
9
|
+
{
|
|
10
|
+
"vendor": "CycloneDX",
|
|
11
|
+
"name": "cargo-cyclonedx",
|
|
12
|
+
"version": "0.5.9"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"component": {
|
|
16
|
+
"type": "library",
|
|
17
|
+
"bom-ref": "path+file:///D:/a/rsplotlib/rsplotlib#0.1.9",
|
|
18
|
+
"name": "rsplotlib",
|
|
19
|
+
"version": "0.1.9",
|
|
20
|
+
"scope": "required",
|
|
21
|
+
"purl": "pkg:cargo/rsplotlib@0.1.9?download_url=file://.",
|
|
22
|
+
"components": [
|
|
23
|
+
{
|
|
24
|
+
"type": "library",
|
|
25
|
+
"bom-ref": "path+file:///D:/a/rsplotlib/rsplotlib#0.1.9 bin-target-0",
|
|
26
|
+
"name": "rsplotlib",
|
|
27
|
+
"version": "0.1.9",
|
|
28
|
+
"purl": "pkg:cargo/rsplotlib@0.1.9?download_url=file://.#src/lib.rs"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"properties": [
|
|
33
|
+
{
|
|
34
|
+
"name": "cdx:rustc:sbom:target:all_targets",
|
|
35
|
+
"value": "true"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"components": [
|
|
40
|
+
{
|
|
41
|
+
"type": "library",
|
|
42
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ab_glyph@0.2.32",
|
|
43
|
+
"author": "Alex Butler <alexheretic@gmail.com>",
|
|
44
|
+
"name": "ab_glyph",
|
|
45
|
+
"version": "0.2.32",
|
|
46
|
+
"description": "API for loading, scaling, positioning and rasterizing OpenType font glyphs.",
|
|
47
|
+
"scope": "required",
|
|
48
|
+
"hashes": [
|
|
49
|
+
{
|
|
50
|
+
"alg": "SHA-256",
|
|
51
|
+
"content": "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"licenses": [
|
|
55
|
+
{
|
|
56
|
+
"expression": "Apache-2.0"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"purl": "pkg:cargo/ab_glyph@0.2.32",
|
|
60
|
+
"externalReferences": [
|
|
61
|
+
{
|
|
62
|
+
"type": "vcs",
|
|
63
|
+
"url": "https://github.com/alexheretic/ab-glyph"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "library",
|
|
69
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ab_glyph_rasterizer@0.1.10",
|
|
70
|
+
"author": "Alex Butler <alexheretic@gmail.com>",
|
|
71
|
+
"name": "ab_glyph_rasterizer",
|
|
72
|
+
"version": "0.1.10",
|
|
73
|
+
"description": "Coverage rasterization for lines, quadratic & cubic beziers",
|
|
74
|
+
"scope": "required",
|
|
75
|
+
"hashes": [
|
|
76
|
+
{
|
|
77
|
+
"alg": "SHA-256",
|
|
78
|
+
"content": "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"licenses": [
|
|
82
|
+
{
|
|
83
|
+
"expression": "Apache-2.0"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"purl": "pkg:cargo/ab_glyph_rasterizer@0.1.10",
|
|
87
|
+
"externalReferences": [
|
|
88
|
+
{
|
|
89
|
+
"type": "vcs",
|
|
90
|
+
"url": "https://github.com/alexheretic/ab-glyph"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "library",
|
|
96
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1",
|
|
97
|
+
"author": "Jonas Schievink <jonasschievink@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>",
|
|
98
|
+
"name": "adler2",
|
|
99
|
+
"version": "2.0.1",
|
|
100
|
+
"description": "A simple clean-room implementation of the Adler-32 checksum",
|
|
101
|
+
"scope": "required",
|
|
102
|
+
"hashes": [
|
|
103
|
+
{
|
|
104
|
+
"alg": "SHA-256",
|
|
105
|
+
"content": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"licenses": [
|
|
109
|
+
{
|
|
110
|
+
"expression": "0BSD OR MIT OR Apache-2.0"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"purl": "pkg:cargo/adler2@2.0.1",
|
|
114
|
+
"externalReferences": [
|
|
115
|
+
{
|
|
116
|
+
"type": "documentation",
|
|
117
|
+
"url": "https://docs.rs/adler2/"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "vcs",
|
|
121
|
+
"url": "https://github.com/oyvindln/adler2"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "library",
|
|
127
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1",
|
|
128
|
+
"author": "Josh Stone <cuviper@gmail.com>",
|
|
129
|
+
"name": "autocfg",
|
|
130
|
+
"version": "1.5.1",
|
|
131
|
+
"description": "Automatic cfg for Rust compiler features",
|
|
132
|
+
"scope": "excluded",
|
|
133
|
+
"hashes": [
|
|
134
|
+
{
|
|
135
|
+
"alg": "SHA-256",
|
|
136
|
+
"content": "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"licenses": [
|
|
140
|
+
{
|
|
141
|
+
"expression": "Apache-2.0 OR MIT"
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"purl": "pkg:cargo/autocfg@1.5.1",
|
|
145
|
+
"externalReferences": [
|
|
146
|
+
{
|
|
147
|
+
"type": "documentation",
|
|
148
|
+
"url": "https://docs.rs/autocfg/"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"type": "vcs",
|
|
152
|
+
"url": "https://github.com/cuviper/autocfg"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"type": "library",
|
|
158
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2",
|
|
159
|
+
"author": "The Rust Project Developers",
|
|
160
|
+
"name": "bitflags",
|
|
161
|
+
"version": "1.3.2",
|
|
162
|
+
"description": "A macro to generate structures which behave like bitflags. ",
|
|
163
|
+
"scope": "required",
|
|
164
|
+
"hashes": [
|
|
165
|
+
{
|
|
166
|
+
"alg": "SHA-256",
|
|
167
|
+
"content": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"licenses": [
|
|
171
|
+
{
|
|
172
|
+
"expression": "MIT OR Apache-2.0"
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"purl": "pkg:cargo/bitflags@1.3.2",
|
|
176
|
+
"externalReferences": [
|
|
177
|
+
{
|
|
178
|
+
"type": "documentation",
|
|
179
|
+
"url": "https://docs.rs/bitflags"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"type": "website",
|
|
183
|
+
"url": "https://github.com/bitflags/bitflags"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"type": "vcs",
|
|
187
|
+
"url": "https://github.com/bitflags/bitflags"
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"type": "library",
|
|
193
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0",
|
|
194
|
+
"author": "The Rust Project Developers",
|
|
195
|
+
"name": "bitflags",
|
|
196
|
+
"version": "2.13.0",
|
|
197
|
+
"description": "A macro to generate structures which behave like bitflags. ",
|
|
198
|
+
"scope": "required",
|
|
199
|
+
"hashes": [
|
|
200
|
+
{
|
|
201
|
+
"alg": "SHA-256",
|
|
202
|
+
"content": "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"licenses": [
|
|
206
|
+
{
|
|
207
|
+
"expression": "MIT OR Apache-2.0"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"purl": "pkg:cargo/bitflags@2.13.0",
|
|
211
|
+
"externalReferences": [
|
|
212
|
+
{
|
|
213
|
+
"type": "documentation",
|
|
214
|
+
"url": "https://docs.rs/bitflags"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"type": "website",
|
|
218
|
+
"url": "https://github.com/bitflags/bitflags"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"type": "vcs",
|
|
222
|
+
"url": "https://github.com/bitflags/bitflags"
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"type": "library",
|
|
228
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.3",
|
|
229
|
+
"author": "Nick Fitzgerald <fitzgen@gmail.com>",
|
|
230
|
+
"name": "bumpalo",
|
|
231
|
+
"version": "3.20.3",
|
|
232
|
+
"description": "A fast bump allocation arena for Rust.",
|
|
233
|
+
"scope": "required",
|
|
234
|
+
"hashes": [
|
|
235
|
+
{
|
|
236
|
+
"alg": "SHA-256",
|
|
237
|
+
"content": "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"licenses": [
|
|
241
|
+
{
|
|
242
|
+
"expression": "MIT OR Apache-2.0"
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"purl": "pkg:cargo/bumpalo@3.20.3",
|
|
246
|
+
"externalReferences": [
|
|
247
|
+
{
|
|
248
|
+
"type": "documentation",
|
|
249
|
+
"url": "https://docs.rs/bumpalo"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"type": "vcs",
|
|
253
|
+
"url": "https://github.com/fitzgen/bumpalo"
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"type": "library",
|
|
259
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0",
|
|
260
|
+
"author": "Lokathor <zefria@gmail.com>",
|
|
261
|
+
"name": "bytemuck",
|
|
262
|
+
"version": "1.25.0",
|
|
263
|
+
"description": "A crate for mucking around with piles of bytes.",
|
|
264
|
+
"scope": "required",
|
|
265
|
+
"hashes": [
|
|
266
|
+
{
|
|
267
|
+
"alg": "SHA-256",
|
|
268
|
+
"content": "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"licenses": [
|
|
272
|
+
{
|
|
273
|
+
"expression": "Zlib OR Apache-2.0 OR MIT"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"purl": "pkg:cargo/bytemuck@1.25.0",
|
|
277
|
+
"externalReferences": [
|
|
278
|
+
{
|
|
279
|
+
"type": "vcs",
|
|
280
|
+
"url": "https://github.com/Lokathor/bytemuck"
|
|
281
|
+
}
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"type": "library",
|
|
286
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0",
|
|
287
|
+
"author": "Andrew Gallant <jamslam@gmail.com>",
|
|
288
|
+
"name": "byteorder",
|
|
289
|
+
"version": "1.5.0",
|
|
290
|
+
"description": "Library for reading/writing numbers in big-endian and little-endian.",
|
|
291
|
+
"scope": "required",
|
|
292
|
+
"hashes": [
|
|
293
|
+
{
|
|
294
|
+
"alg": "SHA-256",
|
|
295
|
+
"content": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"licenses": [
|
|
299
|
+
{
|
|
300
|
+
"expression": "Unlicense OR MIT"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"purl": "pkg:cargo/byteorder@1.5.0",
|
|
304
|
+
"externalReferences": [
|
|
305
|
+
{
|
|
306
|
+
"type": "documentation",
|
|
307
|
+
"url": "https://docs.rs/byteorder"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"type": "website",
|
|
311
|
+
"url": "https://github.com/BurntSushi/byteorder"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"type": "vcs",
|
|
315
|
+
"url": "https://github.com/BurntSushi/byteorder"
|
|
316
|
+
}
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"type": "library",
|
|
321
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
322
|
+
"author": "Alex Crichton <alex@alexcrichton.com>",
|
|
323
|
+
"name": "cfg-if",
|
|
324
|
+
"version": "1.0.4",
|
|
325
|
+
"description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
|
|
326
|
+
"scope": "required",
|
|
327
|
+
"hashes": [
|
|
328
|
+
{
|
|
329
|
+
"alg": "SHA-256",
|
|
330
|
+
"content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"licenses": [
|
|
334
|
+
{
|
|
335
|
+
"expression": "MIT OR Apache-2.0"
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"purl": "pkg:cargo/cfg-if@1.0.4",
|
|
339
|
+
"externalReferences": [
|
|
340
|
+
{
|
|
341
|
+
"type": "vcs",
|
|
342
|
+
"url": "https://github.com/rust-lang/cfg-if"
|
|
343
|
+
}
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"type": "library",
|
|
348
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0",
|
|
349
|
+
"author": "nwin <nwin@users.noreply.github.com>",
|
|
350
|
+
"name": "color_quant",
|
|
351
|
+
"version": "1.1.0",
|
|
352
|
+
"description": "Color quantization library to reduce n colors to 256 colors.",
|
|
353
|
+
"scope": "required",
|
|
354
|
+
"hashes": [
|
|
355
|
+
{
|
|
356
|
+
"alg": "SHA-256",
|
|
357
|
+
"content": "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"licenses": [
|
|
361
|
+
{
|
|
362
|
+
"expression": "MIT"
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"purl": "pkg:cargo/color_quant@1.1.0",
|
|
366
|
+
"externalReferences": [
|
|
367
|
+
{
|
|
368
|
+
"type": "vcs",
|
|
369
|
+
"url": "https://github.com/image-rs/color_quant.git"
|
|
370
|
+
}
|
|
371
|
+
]
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"type": "library",
|
|
375
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
|
|
376
|
+
"author": "Sam Rijs <srijs@airpost.net>, Alex Crichton <alex@alexcrichton.com>",
|
|
377
|
+
"name": "crc32fast",
|
|
378
|
+
"version": "1.5.0",
|
|
379
|
+
"description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation",
|
|
380
|
+
"scope": "required",
|
|
381
|
+
"hashes": [
|
|
382
|
+
{
|
|
383
|
+
"alg": "SHA-256",
|
|
384
|
+
"content": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"licenses": [
|
|
388
|
+
{
|
|
389
|
+
"expression": "MIT OR Apache-2.0"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"purl": "pkg:cargo/crc32fast@1.5.0",
|
|
393
|
+
"externalReferences": [
|
|
394
|
+
{
|
|
395
|
+
"type": "vcs",
|
|
396
|
+
"url": "https://github.com/srijs/rust-crc32fast"
|
|
397
|
+
}
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"type": "library",
|
|
402
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7",
|
|
403
|
+
"author": "The image-rs Developers",
|
|
404
|
+
"name": "fdeflate",
|
|
405
|
+
"version": "0.3.7",
|
|
406
|
+
"description": "Fast specialized deflate implementation",
|
|
407
|
+
"scope": "required",
|
|
408
|
+
"hashes": [
|
|
409
|
+
{
|
|
410
|
+
"alg": "SHA-256",
|
|
411
|
+
"content": "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"licenses": [
|
|
415
|
+
{
|
|
416
|
+
"expression": "MIT OR Apache-2.0"
|
|
417
|
+
}
|
|
418
|
+
],
|
|
419
|
+
"purl": "pkg:cargo/fdeflate@0.3.7",
|
|
420
|
+
"externalReferences": [
|
|
421
|
+
{
|
|
422
|
+
"type": "documentation",
|
|
423
|
+
"url": "https://docs.rs/fdeflate"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"type": "website",
|
|
427
|
+
"url": "https://github.com/image-rs/fdeflate"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"type": "vcs",
|
|
431
|
+
"url": "https://github.com/image-rs/fdeflate"
|
|
432
|
+
}
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"type": "library",
|
|
437
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
|
|
438
|
+
"author": "Alex Crichton <alex@alexcrichton.com>, Josh Triplett <josh@joshtriplett.org>",
|
|
439
|
+
"name": "flate2",
|
|
440
|
+
"version": "1.1.9",
|
|
441
|
+
"description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams. ",
|
|
442
|
+
"scope": "required",
|
|
443
|
+
"hashes": [
|
|
444
|
+
{
|
|
445
|
+
"alg": "SHA-256",
|
|
446
|
+
"content": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"licenses": [
|
|
450
|
+
{
|
|
451
|
+
"expression": "MIT OR Apache-2.0"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"purl": "pkg:cargo/flate2@1.1.9",
|
|
455
|
+
"externalReferences": [
|
|
456
|
+
{
|
|
457
|
+
"type": "documentation",
|
|
458
|
+
"url": "https://docs.rs/flate2"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"type": "website",
|
|
462
|
+
"url": "https://github.com/rust-lang/flate2-rs"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"type": "vcs",
|
|
466
|
+
"url": "https://github.com/rust-lang/flate2-rs"
|
|
467
|
+
}
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"type": "library",
|
|
472
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
|
|
473
|
+
"name": "futures-core",
|
|
474
|
+
"version": "0.3.32",
|
|
475
|
+
"description": "The core traits and types in for the `futures` library. ",
|
|
476
|
+
"scope": "required",
|
|
477
|
+
"hashes": [
|
|
478
|
+
{
|
|
479
|
+
"alg": "SHA-256",
|
|
480
|
+
"content": "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
481
|
+
}
|
|
482
|
+
],
|
|
483
|
+
"licenses": [
|
|
484
|
+
{
|
|
485
|
+
"expression": "MIT OR Apache-2.0"
|
|
486
|
+
}
|
|
487
|
+
],
|
|
488
|
+
"purl": "pkg:cargo/futures-core@0.3.32",
|
|
489
|
+
"externalReferences": [
|
|
490
|
+
{
|
|
491
|
+
"type": "website",
|
|
492
|
+
"url": "https://rust-lang.github.io/futures-rs"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"type": "vcs",
|
|
496
|
+
"url": "https://github.com/rust-lang/futures-rs"
|
|
497
|
+
}
|
|
498
|
+
]
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"type": "library",
|
|
502
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
|
|
503
|
+
"name": "futures-task",
|
|
504
|
+
"version": "0.3.32",
|
|
505
|
+
"description": "Tools for working with tasks. ",
|
|
506
|
+
"scope": "required",
|
|
507
|
+
"hashes": [
|
|
508
|
+
{
|
|
509
|
+
"alg": "SHA-256",
|
|
510
|
+
"content": "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"licenses": [
|
|
514
|
+
{
|
|
515
|
+
"expression": "MIT OR Apache-2.0"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"purl": "pkg:cargo/futures-task@0.3.32",
|
|
519
|
+
"externalReferences": [
|
|
520
|
+
{
|
|
521
|
+
"type": "website",
|
|
522
|
+
"url": "https://rust-lang.github.io/futures-rs"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"type": "vcs",
|
|
526
|
+
"url": "https://github.com/rust-lang/futures-rs"
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"type": "library",
|
|
532
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
|
|
533
|
+
"name": "futures-util",
|
|
534
|
+
"version": "0.3.32",
|
|
535
|
+
"description": "Common utilities and extension traits for the futures-rs library. ",
|
|
536
|
+
"scope": "required",
|
|
537
|
+
"hashes": [
|
|
538
|
+
{
|
|
539
|
+
"alg": "SHA-256",
|
|
540
|
+
"content": "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
541
|
+
}
|
|
542
|
+
],
|
|
543
|
+
"licenses": [
|
|
544
|
+
{
|
|
545
|
+
"expression": "MIT OR Apache-2.0"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"purl": "pkg:cargo/futures-util@0.3.32",
|
|
549
|
+
"externalReferences": [
|
|
550
|
+
{
|
|
551
|
+
"type": "website",
|
|
552
|
+
"url": "https://rust-lang.github.io/futures-rs"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"type": "vcs",
|
|
556
|
+
"url": "https://github.com/rust-lang/futures-rs"
|
|
557
|
+
}
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"type": "library",
|
|
562
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
563
|
+
"name": "heck",
|
|
564
|
+
"version": "0.5.0",
|
|
565
|
+
"description": "heck is a case conversion library.",
|
|
566
|
+
"scope": "required",
|
|
567
|
+
"hashes": [
|
|
568
|
+
{
|
|
569
|
+
"alg": "SHA-256",
|
|
570
|
+
"content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"licenses": [
|
|
574
|
+
{
|
|
575
|
+
"expression": "MIT OR Apache-2.0"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"purl": "pkg:cargo/heck@0.5.0",
|
|
579
|
+
"externalReferences": [
|
|
580
|
+
{
|
|
581
|
+
"type": "vcs",
|
|
582
|
+
"url": "https://github.com/withoutboats/heck"
|
|
583
|
+
}
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"type": "library",
|
|
588
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#image@0.24.9",
|
|
589
|
+
"author": "The image-rs Developers",
|
|
590
|
+
"name": "image",
|
|
591
|
+
"version": "0.24.9",
|
|
592
|
+
"description": "Imaging library. Provides basic image processing and encoders/decoders for common image formats.",
|
|
593
|
+
"scope": "required",
|
|
594
|
+
"hashes": [
|
|
595
|
+
{
|
|
596
|
+
"alg": "SHA-256",
|
|
597
|
+
"content": "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
|
|
598
|
+
}
|
|
599
|
+
],
|
|
600
|
+
"licenses": [
|
|
601
|
+
{
|
|
602
|
+
"expression": "MIT OR Apache-2.0"
|
|
603
|
+
}
|
|
604
|
+
],
|
|
605
|
+
"purl": "pkg:cargo/image@0.24.9",
|
|
606
|
+
"externalReferences": [
|
|
607
|
+
{
|
|
608
|
+
"type": "documentation",
|
|
609
|
+
"url": "https://docs.rs/image"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"type": "website",
|
|
613
|
+
"url": "https://github.com/image-rs/image"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"type": "vcs",
|
|
617
|
+
"url": "https://github.com/image-rs/image"
|
|
618
|
+
}
|
|
619
|
+
]
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"type": "library",
|
|
623
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#jpeg-decoder@0.3.2",
|
|
624
|
+
"author": "The image-rs Developers",
|
|
625
|
+
"name": "jpeg-decoder",
|
|
626
|
+
"version": "0.3.2",
|
|
627
|
+
"description": "JPEG decoder",
|
|
628
|
+
"scope": "required",
|
|
629
|
+
"hashes": [
|
|
630
|
+
{
|
|
631
|
+
"alg": "SHA-256",
|
|
632
|
+
"content": "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
|
|
633
|
+
}
|
|
634
|
+
],
|
|
635
|
+
"licenses": [
|
|
636
|
+
{
|
|
637
|
+
"expression": "MIT OR Apache-2.0"
|
|
638
|
+
}
|
|
639
|
+
],
|
|
640
|
+
"purl": "pkg:cargo/jpeg-decoder@0.3.2",
|
|
641
|
+
"externalReferences": [
|
|
642
|
+
{
|
|
643
|
+
"type": "documentation",
|
|
644
|
+
"url": "https://docs.rs/jpeg-decoder"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"type": "vcs",
|
|
648
|
+
"url": "https://github.com/image-rs/jpeg-decoder"
|
|
649
|
+
}
|
|
650
|
+
]
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"type": "library",
|
|
654
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#jpeg-encoder@0.7.0",
|
|
655
|
+
"author": "Volker Ströbel <volkerstroebel@mysurdity.de>",
|
|
656
|
+
"name": "jpeg-encoder",
|
|
657
|
+
"version": "0.7.0",
|
|
658
|
+
"description": "JPEG encoder",
|
|
659
|
+
"scope": "required",
|
|
660
|
+
"hashes": [
|
|
661
|
+
{
|
|
662
|
+
"alg": "SHA-256",
|
|
663
|
+
"content": "0b0b36cbb4e6704f12f5b5d7b01dac593982c6550859ebd5a66fb15c9ea27fd5"
|
|
664
|
+
}
|
|
665
|
+
],
|
|
666
|
+
"licenses": [
|
|
667
|
+
{
|
|
668
|
+
"expression": "(MIT OR Apache-2.0) AND IJG"
|
|
669
|
+
}
|
|
670
|
+
],
|
|
671
|
+
"purl": "pkg:cargo/jpeg-encoder@0.7.0",
|
|
672
|
+
"externalReferences": [
|
|
673
|
+
{
|
|
674
|
+
"type": "vcs",
|
|
675
|
+
"url": "https://github.com/vstroebel/jpeg-encoder"
|
|
676
|
+
}
|
|
677
|
+
]
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"type": "library",
|
|
681
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.103",
|
|
682
|
+
"author": "The wasm-bindgen Developers",
|
|
683
|
+
"name": "js-sys",
|
|
684
|
+
"version": "0.3.103",
|
|
685
|
+
"description": "Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate. ",
|
|
686
|
+
"scope": "required",
|
|
687
|
+
"hashes": [
|
|
688
|
+
{
|
|
689
|
+
"alg": "SHA-256",
|
|
690
|
+
"content": "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
"licenses": [
|
|
694
|
+
{
|
|
695
|
+
"expression": "MIT OR Apache-2.0"
|
|
696
|
+
}
|
|
697
|
+
],
|
|
698
|
+
"purl": "pkg:cargo/js-sys@0.3.103",
|
|
699
|
+
"externalReferences": [
|
|
700
|
+
{
|
|
701
|
+
"type": "documentation",
|
|
702
|
+
"url": "https://docs.rs/js-sys"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"type": "website",
|
|
706
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"type": "vcs",
|
|
710
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys"
|
|
711
|
+
}
|
|
712
|
+
]
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"type": "library",
|
|
716
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
717
|
+
"author": "The Rust Project Developers",
|
|
718
|
+
"name": "libc",
|
|
719
|
+
"version": "0.2.186",
|
|
720
|
+
"description": "Raw FFI bindings to platform libraries like libc.",
|
|
721
|
+
"scope": "required",
|
|
722
|
+
"hashes": [
|
|
723
|
+
{
|
|
724
|
+
"alg": "SHA-256",
|
|
725
|
+
"content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
726
|
+
}
|
|
727
|
+
],
|
|
728
|
+
"licenses": [
|
|
729
|
+
{
|
|
730
|
+
"expression": "MIT OR Apache-2.0"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
"purl": "pkg:cargo/libc@0.2.186",
|
|
734
|
+
"externalReferences": [
|
|
735
|
+
{
|
|
736
|
+
"type": "vcs",
|
|
737
|
+
"url": "https://github.com/rust-lang/libc"
|
|
738
|
+
}
|
|
739
|
+
]
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"type": "library",
|
|
743
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9",
|
|
744
|
+
"author": "Frommi <daniil.liferenko@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>, Rich Geldreich richgel99@gmail.com",
|
|
745
|
+
"name": "miniz_oxide",
|
|
746
|
+
"version": "0.8.9",
|
|
747
|
+
"description": "DEFLATE compression and decompression library rewritten in Rust based on miniz",
|
|
748
|
+
"scope": "required",
|
|
749
|
+
"hashes": [
|
|
750
|
+
{
|
|
751
|
+
"alg": "SHA-256",
|
|
752
|
+
"content": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"licenses": [
|
|
756
|
+
{
|
|
757
|
+
"expression": "MIT OR Zlib OR Apache-2.0"
|
|
758
|
+
}
|
|
759
|
+
],
|
|
760
|
+
"purl": "pkg:cargo/miniz_oxide@0.8.9",
|
|
761
|
+
"externalReferences": [
|
|
762
|
+
{
|
|
763
|
+
"type": "documentation",
|
|
764
|
+
"url": "https://docs.rs/miniz_oxide"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"type": "website",
|
|
768
|
+
"url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"type": "vcs",
|
|
772
|
+
"url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
|
|
773
|
+
}
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"type": "library",
|
|
778
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
|
|
779
|
+
"author": "The Rust Project Developers",
|
|
780
|
+
"name": "num-traits",
|
|
781
|
+
"version": "0.2.19",
|
|
782
|
+
"description": "Numeric traits for generic mathematics",
|
|
783
|
+
"scope": "required",
|
|
784
|
+
"hashes": [
|
|
785
|
+
{
|
|
786
|
+
"alg": "SHA-256",
|
|
787
|
+
"content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"licenses": [
|
|
791
|
+
{
|
|
792
|
+
"expression": "MIT OR Apache-2.0"
|
|
793
|
+
}
|
|
794
|
+
],
|
|
795
|
+
"purl": "pkg:cargo/num-traits@0.2.19",
|
|
796
|
+
"externalReferences": [
|
|
797
|
+
{
|
|
798
|
+
"type": "documentation",
|
|
799
|
+
"url": "https://docs.rs/num-traits"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"type": "website",
|
|
803
|
+
"url": "https://github.com/rust-num/num-traits"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"type": "vcs",
|
|
807
|
+
"url": "https://github.com/rust-num/num-traits"
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "library",
|
|
813
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
814
|
+
"author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
|
|
815
|
+
"name": "once_cell",
|
|
816
|
+
"version": "1.21.4",
|
|
817
|
+
"description": "Single assignment cells and lazy values.",
|
|
818
|
+
"scope": "required",
|
|
819
|
+
"hashes": [
|
|
820
|
+
{
|
|
821
|
+
"alg": "SHA-256",
|
|
822
|
+
"content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"licenses": [
|
|
826
|
+
{
|
|
827
|
+
"expression": "MIT OR Apache-2.0"
|
|
828
|
+
}
|
|
829
|
+
],
|
|
830
|
+
"purl": "pkg:cargo/once_cell@1.21.4",
|
|
831
|
+
"externalReferences": [
|
|
832
|
+
{
|
|
833
|
+
"type": "documentation",
|
|
834
|
+
"url": "https://docs.rs/once_cell"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"type": "vcs",
|
|
838
|
+
"url": "https://github.com/matklad/once_cell"
|
|
839
|
+
}
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"type": "library",
|
|
844
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1",
|
|
845
|
+
"author": "Alex Butler <alexheretic@gmail.com>",
|
|
846
|
+
"name": "owned_ttf_parser",
|
|
847
|
+
"version": "0.25.1",
|
|
848
|
+
"description": "ttf-parser plus support for owned data",
|
|
849
|
+
"scope": "required",
|
|
850
|
+
"hashes": [
|
|
851
|
+
{
|
|
852
|
+
"alg": "SHA-256",
|
|
853
|
+
"content": "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
"licenses": [
|
|
857
|
+
{
|
|
858
|
+
"expression": "Apache-2.0"
|
|
859
|
+
}
|
|
860
|
+
],
|
|
861
|
+
"purl": "pkg:cargo/owned_ttf_parser@0.25.1",
|
|
862
|
+
"externalReferences": [
|
|
863
|
+
{
|
|
864
|
+
"type": "vcs",
|
|
865
|
+
"url": "https://github.com/alexheretic/owned-ttf-parser"
|
|
866
|
+
}
|
|
867
|
+
]
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"type": "library",
|
|
871
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
|
|
872
|
+
"name": "pin-project-lite",
|
|
873
|
+
"version": "0.2.17",
|
|
874
|
+
"description": "A lightweight version of pin-project written with declarative macros. ",
|
|
875
|
+
"scope": "required",
|
|
876
|
+
"hashes": [
|
|
877
|
+
{
|
|
878
|
+
"alg": "SHA-256",
|
|
879
|
+
"content": "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"licenses": [
|
|
883
|
+
{
|
|
884
|
+
"expression": "Apache-2.0 OR MIT"
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"purl": "pkg:cargo/pin-project-lite@0.2.17",
|
|
888
|
+
"externalReferences": [
|
|
889
|
+
{
|
|
890
|
+
"type": "vcs",
|
|
891
|
+
"url": "https://github.com/taiki-e/pin-project-lite"
|
|
892
|
+
}
|
|
893
|
+
]
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"type": "library",
|
|
897
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-backend@0.3.7",
|
|
898
|
+
"author": "Hao Hou <haohou302@gmail.com>",
|
|
899
|
+
"name": "plotters-backend",
|
|
900
|
+
"version": "0.3.7",
|
|
901
|
+
"description": "Plotters Backend API",
|
|
902
|
+
"scope": "required",
|
|
903
|
+
"hashes": [
|
|
904
|
+
{
|
|
905
|
+
"alg": "SHA-256",
|
|
906
|
+
"content": "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
907
|
+
}
|
|
908
|
+
],
|
|
909
|
+
"licenses": [
|
|
910
|
+
{
|
|
911
|
+
"expression": "MIT"
|
|
912
|
+
}
|
|
913
|
+
],
|
|
914
|
+
"purl": "pkg:cargo/plotters-backend@0.3.7",
|
|
915
|
+
"externalReferences": [
|
|
916
|
+
{
|
|
917
|
+
"type": "website",
|
|
918
|
+
"url": "https://plotters-rs.github.io"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"type": "vcs",
|
|
922
|
+
"url": "https://github.com/plotters-rs/plotters"
|
|
923
|
+
}
|
|
924
|
+
]
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"type": "library",
|
|
928
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-bitmap@0.3.7",
|
|
929
|
+
"author": "Hao Hou <haohou302@gmail.com>",
|
|
930
|
+
"name": "plotters-bitmap",
|
|
931
|
+
"version": "0.3.7",
|
|
932
|
+
"description": "Plotters Bitmap Backend",
|
|
933
|
+
"scope": "required",
|
|
934
|
+
"hashes": [
|
|
935
|
+
{
|
|
936
|
+
"alg": "SHA-256",
|
|
937
|
+
"content": "72ce181e3f6bf82d6c1dc569103ca7b1bd964c60ba03d7e6cdfbb3e3eb7f7405"
|
|
938
|
+
}
|
|
939
|
+
],
|
|
940
|
+
"licenses": [
|
|
941
|
+
{
|
|
942
|
+
"expression": "MIT"
|
|
943
|
+
}
|
|
944
|
+
],
|
|
945
|
+
"purl": "pkg:cargo/plotters-bitmap@0.3.7",
|
|
946
|
+
"externalReferences": [
|
|
947
|
+
{
|
|
948
|
+
"type": "website",
|
|
949
|
+
"url": "https://plotters-rs.github.io"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"type": "vcs",
|
|
953
|
+
"url": "https://github.com/plotters-rs/plotters"
|
|
954
|
+
}
|
|
955
|
+
]
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"type": "library",
|
|
959
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-svg@0.3.7",
|
|
960
|
+
"author": "Hao Hou <haohou302@gmail.com>",
|
|
961
|
+
"name": "plotters-svg",
|
|
962
|
+
"version": "0.3.7",
|
|
963
|
+
"description": "Plotters SVG backend",
|
|
964
|
+
"scope": "required",
|
|
965
|
+
"hashes": [
|
|
966
|
+
{
|
|
967
|
+
"alg": "SHA-256",
|
|
968
|
+
"content": "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
969
|
+
}
|
|
970
|
+
],
|
|
971
|
+
"licenses": [
|
|
972
|
+
{
|
|
973
|
+
"expression": "MIT"
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"purl": "pkg:cargo/plotters-svg@0.3.7",
|
|
977
|
+
"externalReferences": [
|
|
978
|
+
{
|
|
979
|
+
"type": "website",
|
|
980
|
+
"url": "https://plotters-rs.github.io"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"type": "vcs",
|
|
984
|
+
"url": "https://github.com/plotters-rs/plotters.git"
|
|
985
|
+
}
|
|
986
|
+
]
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"type": "library",
|
|
990
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#plotters@0.3.7",
|
|
991
|
+
"author": "Hao Hou <haohou302@gmail.com>",
|
|
992
|
+
"name": "plotters",
|
|
993
|
+
"version": "0.3.7",
|
|
994
|
+
"description": "A Rust drawing library focus on data plotting for both WASM and native applications",
|
|
995
|
+
"scope": "required",
|
|
996
|
+
"hashes": [
|
|
997
|
+
{
|
|
998
|
+
"alg": "SHA-256",
|
|
999
|
+
"content": "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1000
|
+
}
|
|
1001
|
+
],
|
|
1002
|
+
"licenses": [
|
|
1003
|
+
{
|
|
1004
|
+
"expression": "MIT"
|
|
1005
|
+
}
|
|
1006
|
+
],
|
|
1007
|
+
"purl": "pkg:cargo/plotters@0.3.7",
|
|
1008
|
+
"externalReferences": [
|
|
1009
|
+
{
|
|
1010
|
+
"type": "website",
|
|
1011
|
+
"url": "https://plotters-rs.github.io/"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"type": "vcs",
|
|
1015
|
+
"url": "https://github.com/plotters-rs/plotters"
|
|
1016
|
+
}
|
|
1017
|
+
]
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"type": "library",
|
|
1021
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#png@0.17.16",
|
|
1022
|
+
"author": "The image-rs Developers",
|
|
1023
|
+
"name": "png",
|
|
1024
|
+
"version": "0.17.16",
|
|
1025
|
+
"description": "PNG decoding and encoding library in pure Rust",
|
|
1026
|
+
"scope": "required",
|
|
1027
|
+
"hashes": [
|
|
1028
|
+
{
|
|
1029
|
+
"alg": "SHA-256",
|
|
1030
|
+
"content": "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"licenses": [
|
|
1034
|
+
{
|
|
1035
|
+
"expression": "MIT OR Apache-2.0"
|
|
1036
|
+
}
|
|
1037
|
+
],
|
|
1038
|
+
"purl": "pkg:cargo/png@0.17.16",
|
|
1039
|
+
"externalReferences": [
|
|
1040
|
+
{
|
|
1041
|
+
"type": "vcs",
|
|
1042
|
+
"url": "https://github.com/image-rs/image-png"
|
|
1043
|
+
}
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"type": "library",
|
|
1048
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#png@0.18.1",
|
|
1049
|
+
"author": "The image-rs Developers",
|
|
1050
|
+
"name": "png",
|
|
1051
|
+
"version": "0.18.1",
|
|
1052
|
+
"description": "PNG decoding and encoding library in pure Rust",
|
|
1053
|
+
"scope": "required",
|
|
1054
|
+
"hashes": [
|
|
1055
|
+
{
|
|
1056
|
+
"alg": "SHA-256",
|
|
1057
|
+
"content": "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"licenses": [
|
|
1061
|
+
{
|
|
1062
|
+
"expression": "MIT OR Apache-2.0"
|
|
1063
|
+
}
|
|
1064
|
+
],
|
|
1065
|
+
"purl": "pkg:cargo/png@0.18.1",
|
|
1066
|
+
"externalReferences": [
|
|
1067
|
+
{
|
|
1068
|
+
"type": "vcs",
|
|
1069
|
+
"url": "https://github.com/image-rs/image-png"
|
|
1070
|
+
}
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"type": "library",
|
|
1075
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
|
|
1076
|
+
"name": "portable-atomic",
|
|
1077
|
+
"version": "1.13.1",
|
|
1078
|
+
"description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ",
|
|
1079
|
+
"scope": "required",
|
|
1080
|
+
"hashes": [
|
|
1081
|
+
{
|
|
1082
|
+
"alg": "SHA-256",
|
|
1083
|
+
"content": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"licenses": [
|
|
1087
|
+
{
|
|
1088
|
+
"expression": "Apache-2.0 OR MIT"
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"purl": "pkg:cargo/portable-atomic@1.13.1",
|
|
1092
|
+
"externalReferences": [
|
|
1093
|
+
{
|
|
1094
|
+
"type": "vcs",
|
|
1095
|
+
"url": "https://github.com/taiki-e/portable-atomic"
|
|
1096
|
+
}
|
|
1097
|
+
]
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"type": "library",
|
|
1101
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1102
|
+
"author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
|
|
1103
|
+
"name": "proc-macro2",
|
|
1104
|
+
"version": "1.0.106",
|
|
1105
|
+
"description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
|
|
1106
|
+
"scope": "required",
|
|
1107
|
+
"hashes": [
|
|
1108
|
+
{
|
|
1109
|
+
"alg": "SHA-256",
|
|
1110
|
+
"content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"licenses": [
|
|
1114
|
+
{
|
|
1115
|
+
"expression": "MIT OR Apache-2.0"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"purl": "pkg:cargo/proc-macro2@1.0.106",
|
|
1119
|
+
"externalReferences": [
|
|
1120
|
+
{
|
|
1121
|
+
"type": "documentation",
|
|
1122
|
+
"url": "https://docs.rs/proc-macro2"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"type": "vcs",
|
|
1126
|
+
"url": "https://github.com/dtolnay/proc-macro2"
|
|
1127
|
+
}
|
|
1128
|
+
]
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"type": "library",
|
|
1132
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
|
|
1133
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
1134
|
+
"name": "pyo3-build-config",
|
|
1135
|
+
"version": "0.29.0",
|
|
1136
|
+
"description": "Build configuration for the PyO3 ecosystem",
|
|
1137
|
+
"scope": "excluded",
|
|
1138
|
+
"hashes": [
|
|
1139
|
+
{
|
|
1140
|
+
"alg": "SHA-256",
|
|
1141
|
+
"content": "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"licenses": [
|
|
1145
|
+
{
|
|
1146
|
+
"expression": "MIT OR Apache-2.0"
|
|
1147
|
+
}
|
|
1148
|
+
],
|
|
1149
|
+
"purl": "pkg:cargo/pyo3-build-config@0.29.0",
|
|
1150
|
+
"externalReferences": [
|
|
1151
|
+
{
|
|
1152
|
+
"type": "website",
|
|
1153
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"type": "vcs",
|
|
1157
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1158
|
+
}
|
|
1159
|
+
]
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"type": "library",
|
|
1163
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
|
|
1164
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
1165
|
+
"name": "pyo3-ffi",
|
|
1166
|
+
"version": "0.29.0",
|
|
1167
|
+
"description": "Python-API bindings for the PyO3 ecosystem",
|
|
1168
|
+
"scope": "required",
|
|
1169
|
+
"hashes": [
|
|
1170
|
+
{
|
|
1171
|
+
"alg": "SHA-256",
|
|
1172
|
+
"content": "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
1173
|
+
}
|
|
1174
|
+
],
|
|
1175
|
+
"licenses": [
|
|
1176
|
+
{
|
|
1177
|
+
"expression": "MIT OR Apache-2.0"
|
|
1178
|
+
}
|
|
1179
|
+
],
|
|
1180
|
+
"purl": "pkg:cargo/pyo3-ffi@0.29.0",
|
|
1181
|
+
"externalReferences": [
|
|
1182
|
+
{
|
|
1183
|
+
"type": "website",
|
|
1184
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"type": "other",
|
|
1188
|
+
"url": "python"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"type": "vcs",
|
|
1192
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"type": "library",
|
|
1198
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
|
|
1199
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
1200
|
+
"name": "pyo3-macros-backend",
|
|
1201
|
+
"version": "0.29.0",
|
|
1202
|
+
"description": "Code generation for PyO3 package",
|
|
1203
|
+
"scope": "required",
|
|
1204
|
+
"hashes": [
|
|
1205
|
+
{
|
|
1206
|
+
"alg": "SHA-256",
|
|
1207
|
+
"content": "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1210
|
+
"licenses": [
|
|
1211
|
+
{
|
|
1212
|
+
"expression": "MIT OR Apache-2.0"
|
|
1213
|
+
}
|
|
1214
|
+
],
|
|
1215
|
+
"purl": "pkg:cargo/pyo3-macros-backend@0.29.0",
|
|
1216
|
+
"externalReferences": [
|
|
1217
|
+
{
|
|
1218
|
+
"type": "website",
|
|
1219
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"type": "vcs",
|
|
1223
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1224
|
+
}
|
|
1225
|
+
]
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"type": "library",
|
|
1229
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0",
|
|
1230
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
1231
|
+
"name": "pyo3-macros",
|
|
1232
|
+
"version": "0.29.0",
|
|
1233
|
+
"description": "Proc macros for PyO3 package",
|
|
1234
|
+
"scope": "required",
|
|
1235
|
+
"hashes": [
|
|
1236
|
+
{
|
|
1237
|
+
"alg": "SHA-256",
|
|
1238
|
+
"content": "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
1239
|
+
}
|
|
1240
|
+
],
|
|
1241
|
+
"licenses": [
|
|
1242
|
+
{
|
|
1243
|
+
"expression": "MIT OR Apache-2.0"
|
|
1244
|
+
}
|
|
1245
|
+
],
|
|
1246
|
+
"purl": "pkg:cargo/pyo3-macros@0.29.0",
|
|
1247
|
+
"externalReferences": [
|
|
1248
|
+
{
|
|
1249
|
+
"type": "website",
|
|
1250
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"type": "vcs",
|
|
1254
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1255
|
+
}
|
|
1256
|
+
]
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"type": "library",
|
|
1260
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
|
|
1261
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
1262
|
+
"name": "pyo3",
|
|
1263
|
+
"version": "0.29.0",
|
|
1264
|
+
"description": "Bindings to Python interpreter",
|
|
1265
|
+
"scope": "required",
|
|
1266
|
+
"hashes": [
|
|
1267
|
+
{
|
|
1268
|
+
"alg": "SHA-256",
|
|
1269
|
+
"content": "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
1270
|
+
}
|
|
1271
|
+
],
|
|
1272
|
+
"licenses": [
|
|
1273
|
+
{
|
|
1274
|
+
"expression": "MIT OR Apache-2.0"
|
|
1275
|
+
}
|
|
1276
|
+
],
|
|
1277
|
+
"purl": "pkg:cargo/pyo3@0.29.0",
|
|
1278
|
+
"externalReferences": [
|
|
1279
|
+
{
|
|
1280
|
+
"type": "documentation",
|
|
1281
|
+
"url": "https://docs.rs/crate/pyo3/"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"type": "website",
|
|
1285
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"type": "other",
|
|
1289
|
+
"url": "pyo3-python"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"type": "vcs",
|
|
1293
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
1294
|
+
}
|
|
1295
|
+
]
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"type": "library",
|
|
1299
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1300
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
1301
|
+
"name": "quote",
|
|
1302
|
+
"version": "1.0.46",
|
|
1303
|
+
"description": "Quasi-quoting macro quote!(...)",
|
|
1304
|
+
"scope": "required",
|
|
1305
|
+
"hashes": [
|
|
1306
|
+
{
|
|
1307
|
+
"alg": "SHA-256",
|
|
1308
|
+
"content": "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1309
|
+
}
|
|
1310
|
+
],
|
|
1311
|
+
"licenses": [
|
|
1312
|
+
{
|
|
1313
|
+
"expression": "MIT OR Apache-2.0"
|
|
1314
|
+
}
|
|
1315
|
+
],
|
|
1316
|
+
"purl": "pkg:cargo/quote@1.0.46",
|
|
1317
|
+
"externalReferences": [
|
|
1318
|
+
{
|
|
1319
|
+
"type": "documentation",
|
|
1320
|
+
"url": "https://docs.rs/quote/"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"type": "vcs",
|
|
1324
|
+
"url": "https://github.com/dtolnay/quote"
|
|
1325
|
+
}
|
|
1326
|
+
]
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"type": "library",
|
|
1330
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
|
|
1331
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
1332
|
+
"name": "rustversion",
|
|
1333
|
+
"version": "1.0.22",
|
|
1334
|
+
"description": "Conditional compilation according to rustc compiler version",
|
|
1335
|
+
"scope": "excluded",
|
|
1336
|
+
"hashes": [
|
|
1337
|
+
{
|
|
1338
|
+
"alg": "SHA-256",
|
|
1339
|
+
"content": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1340
|
+
}
|
|
1341
|
+
],
|
|
1342
|
+
"licenses": [
|
|
1343
|
+
{
|
|
1344
|
+
"expression": "MIT OR Apache-2.0"
|
|
1345
|
+
}
|
|
1346
|
+
],
|
|
1347
|
+
"purl": "pkg:cargo/rustversion@1.0.22",
|
|
1348
|
+
"externalReferences": [
|
|
1349
|
+
{
|
|
1350
|
+
"type": "documentation",
|
|
1351
|
+
"url": "https://docs.rs/rustversion"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"type": "vcs",
|
|
1355
|
+
"url": "https://github.com/dtolnay/rustversion"
|
|
1356
|
+
}
|
|
1357
|
+
]
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"type": "library",
|
|
1361
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9",
|
|
1362
|
+
"author": "Marvin Countryman <me@maar.vin>",
|
|
1363
|
+
"name": "simd-adler32",
|
|
1364
|
+
"version": "0.3.9",
|
|
1365
|
+
"description": "A SIMD-accelerated Adler-32 hash algorithm implementation.",
|
|
1366
|
+
"scope": "required",
|
|
1367
|
+
"hashes": [
|
|
1368
|
+
{
|
|
1369
|
+
"alg": "SHA-256",
|
|
1370
|
+
"content": "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1371
|
+
}
|
|
1372
|
+
],
|
|
1373
|
+
"licenses": [
|
|
1374
|
+
{
|
|
1375
|
+
"expression": "MIT"
|
|
1376
|
+
}
|
|
1377
|
+
],
|
|
1378
|
+
"purl": "pkg:cargo/simd-adler32@0.3.9",
|
|
1379
|
+
"externalReferences": [
|
|
1380
|
+
{
|
|
1381
|
+
"type": "vcs",
|
|
1382
|
+
"url": "https://github.com/mcountryman/simd-adler32"
|
|
1383
|
+
}
|
|
1384
|
+
]
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"type": "library",
|
|
1388
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12",
|
|
1389
|
+
"author": "Carl Lerche <me@carllerche.com>",
|
|
1390
|
+
"name": "slab",
|
|
1391
|
+
"version": "0.4.12",
|
|
1392
|
+
"description": "Pre-allocated storage for a uniform data type",
|
|
1393
|
+
"scope": "required",
|
|
1394
|
+
"hashes": [
|
|
1395
|
+
{
|
|
1396
|
+
"alg": "SHA-256",
|
|
1397
|
+
"content": "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1398
|
+
}
|
|
1399
|
+
],
|
|
1400
|
+
"licenses": [
|
|
1401
|
+
{
|
|
1402
|
+
"expression": "MIT"
|
|
1403
|
+
}
|
|
1404
|
+
],
|
|
1405
|
+
"purl": "pkg:cargo/slab@0.4.12",
|
|
1406
|
+
"externalReferences": [
|
|
1407
|
+
{
|
|
1408
|
+
"type": "vcs",
|
|
1409
|
+
"url": "https://github.com/tokio-rs/slab"
|
|
1410
|
+
}
|
|
1411
|
+
]
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"type": "library",
|
|
1415
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118",
|
|
1416
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
1417
|
+
"name": "syn",
|
|
1418
|
+
"version": "2.0.118",
|
|
1419
|
+
"description": "Parser for Rust source code",
|
|
1420
|
+
"scope": "required",
|
|
1421
|
+
"hashes": [
|
|
1422
|
+
{
|
|
1423
|
+
"alg": "SHA-256",
|
|
1424
|
+
"content": "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
1425
|
+
}
|
|
1426
|
+
],
|
|
1427
|
+
"licenses": [
|
|
1428
|
+
{
|
|
1429
|
+
"expression": "MIT OR Apache-2.0"
|
|
1430
|
+
}
|
|
1431
|
+
],
|
|
1432
|
+
"purl": "pkg:cargo/syn@2.0.118",
|
|
1433
|
+
"externalReferences": [
|
|
1434
|
+
{
|
|
1435
|
+
"type": "documentation",
|
|
1436
|
+
"url": "https://docs.rs/syn"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"type": "vcs",
|
|
1440
|
+
"url": "https://github.com/dtolnay/syn"
|
|
1441
|
+
}
|
|
1442
|
+
]
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"type": "library",
|
|
1446
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
|
|
1447
|
+
"author": "Dan Gohman <sunfish@mozilla.com>",
|
|
1448
|
+
"name": "target-lexicon",
|
|
1449
|
+
"version": "0.13.5",
|
|
1450
|
+
"description": "LLVM target triple types",
|
|
1451
|
+
"scope": "excluded",
|
|
1452
|
+
"hashes": [
|
|
1453
|
+
{
|
|
1454
|
+
"alg": "SHA-256",
|
|
1455
|
+
"content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1456
|
+
}
|
|
1457
|
+
],
|
|
1458
|
+
"licenses": [
|
|
1459
|
+
{
|
|
1460
|
+
"expression": "Apache-2.0 WITH LLVM-exception"
|
|
1461
|
+
}
|
|
1462
|
+
],
|
|
1463
|
+
"purl": "pkg:cargo/target-lexicon@0.13.5",
|
|
1464
|
+
"externalReferences": [
|
|
1465
|
+
{
|
|
1466
|
+
"type": "documentation",
|
|
1467
|
+
"url": "https://docs.rs/target-lexicon/"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"type": "vcs",
|
|
1471
|
+
"url": "https://github.com/bytecodealliance/target-lexicon"
|
|
1472
|
+
}
|
|
1473
|
+
]
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"type": "library",
|
|
1477
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1",
|
|
1478
|
+
"author": "Caleb Maclennan <caleb@alerque.com>, Laurenz Stampfl <laurenz.stampfl@gmail.com>, Yevhenii Reizner <razrfalcon@gmail.com>, خالد حسني (Khaled Hosny) <khaled@aliftype.com>",
|
|
1479
|
+
"name": "ttf-parser",
|
|
1480
|
+
"version": "0.25.1",
|
|
1481
|
+
"description": "A high-level, safe, zero-allocation font parser for TrueType, OpenType, and AAT.",
|
|
1482
|
+
"scope": "required",
|
|
1483
|
+
"hashes": [
|
|
1484
|
+
{
|
|
1485
|
+
"alg": "SHA-256",
|
|
1486
|
+
"content": "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
1487
|
+
}
|
|
1488
|
+
],
|
|
1489
|
+
"licenses": [
|
|
1490
|
+
{
|
|
1491
|
+
"expression": "MIT OR Apache-2.0"
|
|
1492
|
+
}
|
|
1493
|
+
],
|
|
1494
|
+
"purl": "pkg:cargo/ttf-parser@0.25.1",
|
|
1495
|
+
"externalReferences": [
|
|
1496
|
+
{
|
|
1497
|
+
"type": "documentation",
|
|
1498
|
+
"url": "https://docs.rs/ttf-parser/"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"type": "vcs",
|
|
1502
|
+
"url": "https://github.com/harfbuzz/ttf-parser"
|
|
1503
|
+
}
|
|
1504
|
+
]
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"type": "library",
|
|
1508
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
|
|
1509
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
1510
|
+
"name": "unicode-ident",
|
|
1511
|
+
"version": "1.0.24",
|
|
1512
|
+
"description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
|
|
1513
|
+
"scope": "required",
|
|
1514
|
+
"hashes": [
|
|
1515
|
+
{
|
|
1516
|
+
"alg": "SHA-256",
|
|
1517
|
+
"content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"licenses": [
|
|
1521
|
+
{
|
|
1522
|
+
"expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
|
|
1523
|
+
}
|
|
1524
|
+
],
|
|
1525
|
+
"purl": "pkg:cargo/unicode-ident@1.0.24",
|
|
1526
|
+
"externalReferences": [
|
|
1527
|
+
{
|
|
1528
|
+
"type": "documentation",
|
|
1529
|
+
"url": "https://docs.rs/unicode-ident"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"type": "vcs",
|
|
1533
|
+
"url": "https://github.com/dtolnay/unicode-ident"
|
|
1534
|
+
}
|
|
1535
|
+
]
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"type": "library",
|
|
1539
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.126",
|
|
1540
|
+
"author": "The wasm-bindgen Developers",
|
|
1541
|
+
"name": "wasm-bindgen-macro-support",
|
|
1542
|
+
"version": "0.2.126",
|
|
1543
|
+
"description": "Implementation APIs for the `#[wasm_bindgen]` attribute",
|
|
1544
|
+
"scope": "required",
|
|
1545
|
+
"hashes": [
|
|
1546
|
+
{
|
|
1547
|
+
"alg": "SHA-256",
|
|
1548
|
+
"content": "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
1549
|
+
}
|
|
1550
|
+
],
|
|
1551
|
+
"licenses": [
|
|
1552
|
+
{
|
|
1553
|
+
"expression": "MIT OR Apache-2.0"
|
|
1554
|
+
}
|
|
1555
|
+
],
|
|
1556
|
+
"purl": "pkg:cargo/wasm-bindgen-macro-support@0.2.126",
|
|
1557
|
+
"externalReferences": [
|
|
1558
|
+
{
|
|
1559
|
+
"type": "documentation",
|
|
1560
|
+
"url": "https://docs.rs/wasm-bindgen"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"type": "website",
|
|
1564
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"type": "vcs",
|
|
1568
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support"
|
|
1569
|
+
}
|
|
1570
|
+
]
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"type": "library",
|
|
1574
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.126",
|
|
1575
|
+
"author": "The wasm-bindgen Developers",
|
|
1576
|
+
"name": "wasm-bindgen-macro",
|
|
1577
|
+
"version": "0.2.126",
|
|
1578
|
+
"description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency ",
|
|
1579
|
+
"scope": "required",
|
|
1580
|
+
"hashes": [
|
|
1581
|
+
{
|
|
1582
|
+
"alg": "SHA-256",
|
|
1583
|
+
"content": "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
1584
|
+
}
|
|
1585
|
+
],
|
|
1586
|
+
"licenses": [
|
|
1587
|
+
{
|
|
1588
|
+
"expression": "MIT OR Apache-2.0"
|
|
1589
|
+
}
|
|
1590
|
+
],
|
|
1591
|
+
"purl": "pkg:cargo/wasm-bindgen-macro@0.2.126",
|
|
1592
|
+
"externalReferences": [
|
|
1593
|
+
{
|
|
1594
|
+
"type": "documentation",
|
|
1595
|
+
"url": "https://docs.rs/wasm-bindgen"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"type": "website",
|
|
1599
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"type": "vcs",
|
|
1603
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro"
|
|
1604
|
+
}
|
|
1605
|
+
]
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"type": "library",
|
|
1609
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.126",
|
|
1610
|
+
"author": "The wasm-bindgen Developers",
|
|
1611
|
+
"name": "wasm-bindgen-shared",
|
|
1612
|
+
"version": "0.2.126",
|
|
1613
|
+
"description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal dependency. ",
|
|
1614
|
+
"scope": "required",
|
|
1615
|
+
"hashes": [
|
|
1616
|
+
{
|
|
1617
|
+
"alg": "SHA-256",
|
|
1618
|
+
"content": "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
1619
|
+
}
|
|
1620
|
+
],
|
|
1621
|
+
"licenses": [
|
|
1622
|
+
{
|
|
1623
|
+
"expression": "MIT OR Apache-2.0"
|
|
1624
|
+
}
|
|
1625
|
+
],
|
|
1626
|
+
"purl": "pkg:cargo/wasm-bindgen-shared@0.2.126",
|
|
1627
|
+
"externalReferences": [
|
|
1628
|
+
{
|
|
1629
|
+
"type": "documentation",
|
|
1630
|
+
"url": "https://docs.rs/wasm-bindgen-shared"
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"type": "website",
|
|
1634
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"type": "other",
|
|
1638
|
+
"url": "wasm_bindgen"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"type": "vcs",
|
|
1642
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared"
|
|
1643
|
+
}
|
|
1644
|
+
]
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"type": "library",
|
|
1648
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.126",
|
|
1649
|
+
"author": "The wasm-bindgen Developers",
|
|
1650
|
+
"name": "wasm-bindgen",
|
|
1651
|
+
"version": "0.2.126",
|
|
1652
|
+
"description": "Easy support for interacting between JS and Rust. ",
|
|
1653
|
+
"scope": "required",
|
|
1654
|
+
"hashes": [
|
|
1655
|
+
{
|
|
1656
|
+
"alg": "SHA-256",
|
|
1657
|
+
"content": "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
1658
|
+
}
|
|
1659
|
+
],
|
|
1660
|
+
"licenses": [
|
|
1661
|
+
{
|
|
1662
|
+
"expression": "MIT OR Apache-2.0"
|
|
1663
|
+
}
|
|
1664
|
+
],
|
|
1665
|
+
"purl": "pkg:cargo/wasm-bindgen@0.2.126",
|
|
1666
|
+
"externalReferences": [
|
|
1667
|
+
{
|
|
1668
|
+
"type": "documentation",
|
|
1669
|
+
"url": "https://docs.rs/wasm-bindgen"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"type": "website",
|
|
1673
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"type": "vcs",
|
|
1677
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen"
|
|
1678
|
+
}
|
|
1679
|
+
]
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"type": "library",
|
|
1683
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.103",
|
|
1684
|
+
"author": "The wasm-bindgen Developers",
|
|
1685
|
+
"name": "web-sys",
|
|
1686
|
+
"version": "0.3.103",
|
|
1687
|
+
"description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL ",
|
|
1688
|
+
"scope": "required",
|
|
1689
|
+
"hashes": [
|
|
1690
|
+
{
|
|
1691
|
+
"alg": "SHA-256",
|
|
1692
|
+
"content": "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
1693
|
+
}
|
|
1694
|
+
],
|
|
1695
|
+
"licenses": [
|
|
1696
|
+
{
|
|
1697
|
+
"expression": "MIT OR Apache-2.0"
|
|
1698
|
+
}
|
|
1699
|
+
],
|
|
1700
|
+
"purl": "pkg:cargo/web-sys@0.3.103",
|
|
1701
|
+
"externalReferences": [
|
|
1702
|
+
{
|
|
1703
|
+
"type": "documentation",
|
|
1704
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/api/web_sys/"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"type": "website",
|
|
1708
|
+
"url": "https://wasm-bindgen.github.io/wasm-bindgen/web-sys/index.html"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"type": "vcs",
|
|
1712
|
+
"url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys"
|
|
1713
|
+
}
|
|
1714
|
+
]
|
|
1715
|
+
}
|
|
1716
|
+
],
|
|
1717
|
+
"dependencies": [
|
|
1718
|
+
{
|
|
1719
|
+
"ref": "path+file:///D:/a/rsplotlib/rsplotlib#0.1.9",
|
|
1720
|
+
"dependsOn": [
|
|
1721
|
+
"registry+https://github.com/rust-lang/crates.io-index#jpeg-encoder@0.7.0",
|
|
1722
|
+
"registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1",
|
|
1723
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters@0.3.7",
|
|
1724
|
+
"registry+https://github.com/rust-lang/crates.io-index#png@0.18.1",
|
|
1725
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0"
|
|
1726
|
+
]
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#ab_glyph@0.2.32",
|
|
1730
|
+
"dependsOn": [
|
|
1731
|
+
"registry+https://github.com/rust-lang/crates.io-index#ab_glyph_rasterizer@0.1.10",
|
|
1732
|
+
"registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1"
|
|
1733
|
+
]
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#ab_glyph_rasterizer@0.1.10"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1"
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.3"
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0"
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0"
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
|
|
1767
|
+
"dependsOn": [
|
|
1768
|
+
"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
|
|
1769
|
+
]
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7",
|
|
1773
|
+
"dependsOn": [
|
|
1774
|
+
"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9"
|
|
1775
|
+
]
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
|
|
1779
|
+
"dependsOn": [
|
|
1780
|
+
"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
|
|
1781
|
+
"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9"
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32"
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
|
|
1792
|
+
"dependsOn": [
|
|
1793
|
+
"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
|
|
1794
|
+
"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
|
|
1795
|
+
"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
|
|
1796
|
+
"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12"
|
|
1797
|
+
]
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#image@0.24.9",
|
|
1804
|
+
"dependsOn": [
|
|
1805
|
+
"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0",
|
|
1806
|
+
"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0",
|
|
1807
|
+
"registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0",
|
|
1808
|
+
"registry+https://github.com/rust-lang/crates.io-index#jpeg-decoder@0.3.2",
|
|
1809
|
+
"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
|
|
1810
|
+
"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16"
|
|
1811
|
+
]
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#jpeg-decoder@0.3.2"
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#jpeg-encoder@0.7.0"
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.103",
|
|
1821
|
+
"dependsOn": [
|
|
1822
|
+
"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
1823
|
+
"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
|
|
1824
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.126"
|
|
1825
|
+
]
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9",
|
|
1832
|
+
"dependsOn": [
|
|
1833
|
+
"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1",
|
|
1834
|
+
"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9"
|
|
1835
|
+
]
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
|
|
1839
|
+
"dependsOn": [
|
|
1840
|
+
"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
|
|
1841
|
+
]
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1",
|
|
1848
|
+
"dependsOn": [
|
|
1849
|
+
"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1"
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-backend@0.3.7"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-bitmap@0.3.7",
|
|
1860
|
+
"dependsOn": [
|
|
1861
|
+
"registry+https://github.com/rust-lang/crates.io-index#image@0.24.9",
|
|
1862
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters-backend@0.3.7"
|
|
1863
|
+
]
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#plotters-svg@0.3.7",
|
|
1867
|
+
"dependsOn": [
|
|
1868
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters-backend@0.3.7"
|
|
1869
|
+
]
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#plotters@0.3.7",
|
|
1873
|
+
"dependsOn": [
|
|
1874
|
+
"registry+https://github.com/rust-lang/crates.io-index#ab_glyph@0.2.32",
|
|
1875
|
+
"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
|
|
1876
|
+
"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
1877
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters-backend@0.3.7",
|
|
1878
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters-bitmap@0.3.7",
|
|
1879
|
+
"registry+https://github.com/rust-lang/crates.io-index#plotters-svg@0.3.7",
|
|
1880
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.126",
|
|
1881
|
+
"registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.103"
|
|
1882
|
+
]
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#png@0.17.16",
|
|
1886
|
+
"dependsOn": [
|
|
1887
|
+
"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2",
|
|
1888
|
+
"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
|
|
1889
|
+
"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7",
|
|
1890
|
+
"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
|
|
1891
|
+
"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9"
|
|
1892
|
+
]
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#png@0.18.1",
|
|
1896
|
+
"dependsOn": [
|
|
1897
|
+
"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0",
|
|
1898
|
+
"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
|
|
1899
|
+
"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7",
|
|
1900
|
+
"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
|
|
1901
|
+
"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9"
|
|
1902
|
+
]
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1909
|
+
"dependsOn": [
|
|
1910
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1911
|
+
]
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
|
|
1915
|
+
"dependsOn": [
|
|
1916
|
+
"registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
1917
|
+
]
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
|
|
1921
|
+
"dependsOn": [
|
|
1922
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
1923
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0"
|
|
1924
|
+
]
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
|
|
1928
|
+
"dependsOn": [
|
|
1929
|
+
"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
1930
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1931
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1932
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118"
|
|
1933
|
+
]
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0",
|
|
1937
|
+
"dependsOn": [
|
|
1938
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1939
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
|
|
1940
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1941
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118"
|
|
1942
|
+
]
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
|
|
1946
|
+
"dependsOn": [
|
|
1947
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
1948
|
+
"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
1949
|
+
"registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
|
|
1950
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
|
|
1951
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
|
|
1952
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0"
|
|
1953
|
+
]
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1957
|
+
"dependsOn": [
|
|
1958
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
|
|
1959
|
+
]
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118",
|
|
1972
|
+
"dependsOn": [
|
|
1973
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1974
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1975
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1976
|
+
]
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.126",
|
|
1989
|
+
"dependsOn": [
|
|
1990
|
+
"registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.3",
|
|
1991
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
1992
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
1993
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118",
|
|
1994
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.126"
|
|
1995
|
+
]
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.126",
|
|
1999
|
+
"dependsOn": [
|
|
2000
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
|
|
2001
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.126"
|
|
2002
|
+
]
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.126",
|
|
2006
|
+
"dependsOn": [
|
|
2007
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
2008
|
+
]
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.126",
|
|
2012
|
+
"dependsOn": [
|
|
2013
|
+
"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
2014
|
+
"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
2015
|
+
"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
|
|
2016
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.126",
|
|
2017
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.126"
|
|
2018
|
+
]
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.103",
|
|
2022
|
+
"dependsOn": [
|
|
2023
|
+
"registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.103",
|
|
2024
|
+
"registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.126"
|
|
2025
|
+
]
|
|
2026
|
+
}
|
|
2027
|
+
]
|
|
2028
|
+
}
|