shrew-python 0.1.0__tar.gz
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.
- shrew_python-0.1.0/Cargo.lock +1806 -0
- shrew_python-0.1.0/Cargo.toml +38 -0
- shrew_python-0.1.0/PKG-INFO +77 -0
- shrew_python-0.1.0/README.md +49 -0
- shrew_python-0.1.0/crates/shrew/Cargo.toml +26 -0
- shrew_python-0.1.0/crates/shrew/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew/README.md +20 -0
- shrew_python-0.1.0/crates/shrew/src/checkpoint.rs +1063 -0
- shrew_python-0.1.0/crates/shrew/src/distributed.rs +966 -0
- shrew_python-0.1.0/crates/shrew/src/exec/engine.rs +1029 -0
- shrew_python-0.1.0/crates/shrew/src/exec/jit.rs +1932 -0
- shrew_python-0.1.0/crates/shrew/src/exec/mod.rs +33 -0
- shrew_python-0.1.0/crates/shrew/src/exec/train.rs +305 -0
- shrew_python-0.1.0/crates/shrew/src/lib.rs +126 -0
- shrew_python-0.1.0/crates/shrew/src/onnx.rs +1910 -0
- shrew_python-0.1.0/crates/shrew/src/profiler.rs +997 -0
- shrew_python-0.1.0/crates/shrew/src/quantize.rs +790 -0
- shrew_python-0.1.0/crates/shrew/src/safetensors.rs +720 -0
- shrew_python-0.1.0/crates/shrew/tests/exec_tests.rs +1235 -0
- shrew_python-0.1.0/crates/shrew/tests/jit_tests.rs +647 -0
- shrew_python-0.1.0/crates/shrew/tests/nn_tests.rs +4039 -0
- shrew_python-0.1.0/crates/shrew-core/Cargo.toml +18 -0
- shrew_python-0.1.0/crates/shrew-core/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-core/README.md +13 -0
- shrew_python-0.1.0/crates/shrew-core/src/backend.rs +280 -0
- shrew_python-0.1.0/crates/shrew-core/src/backprop.rs +1686 -0
- shrew_python-0.1.0/crates/shrew-core/src/dtype.rs +209 -0
- shrew_python-0.1.0/crates/shrew-core/src/dynamic_shape.rs +939 -0
- shrew_python-0.1.0/crates/shrew-core/src/error.rs +91 -0
- shrew_python-0.1.0/crates/shrew-core/src/layout.rs +315 -0
- shrew_python-0.1.0/crates/shrew-core/src/lib.rs +37 -0
- shrew_python-0.1.0/crates/shrew-core/src/op.rs +605 -0
- shrew_python-0.1.0/crates/shrew-core/src/shape.rs +247 -0
- shrew_python-0.1.0/crates/shrew-core/src/tensor.rs +2571 -0
- shrew_python-0.1.0/crates/shrew-cpu/Cargo.toml +20 -0
- shrew_python-0.1.0/crates/shrew-cpu/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-cpu/README.md +12 -0
- shrew_python-0.1.0/crates/shrew-cpu/src/lib.rs +463 -0
- shrew_python-0.1.0/crates/shrew-cpu/src/ops.rs +2003 -0
- shrew_python-0.1.0/crates/shrew-cuda/Cargo.toml +22 -0
- shrew_python-0.1.0/crates/shrew-cuda/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-cuda/README.md +16 -0
- shrew_python-0.1.0/crates/shrew-cuda/src/kernels.rs +1641 -0
- shrew_python-0.1.0/crates/shrew-cuda/src/lib.rs +2596 -0
- shrew_python-0.1.0/crates/shrew-cuda/src/pool.rs +404 -0
- shrew_python-0.1.0/crates/shrew-cuda/tests/cuda_tests.rs +725 -0
- shrew_python-0.1.0/crates/shrew-cuda/tests/gpu_nn_tests.rs +286 -0
- shrew_python-0.1.0/crates/shrew-cuda/tests/mixed_precision_tests.rs +325 -0
- shrew_python-0.1.0/crates/shrew-data/Cargo.toml +25 -0
- shrew_python-0.1.0/crates/shrew-data/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-data/README.md +13 -0
- shrew_python-0.1.0/crates/shrew-data/src/async_loader.rs +387 -0
- shrew_python-0.1.0/crates/shrew-data/src/augment.rs +401 -0
- shrew_python-0.1.0/crates/shrew-data/src/combinators.rs +445 -0
- shrew_python-0.1.0/crates/shrew-data/src/csv_dataset.rs +262 -0
- shrew_python-0.1.0/crates/shrew-data/src/dataset.rs +49 -0
- shrew_python-0.1.0/crates/shrew-data/src/image_folder.rs +305 -0
- shrew_python-0.1.0/crates/shrew-data/src/lib.rs +69 -0
- shrew_python-0.1.0/crates/shrew-data/src/loader.rs +335 -0
- shrew_python-0.1.0/crates/shrew-data/src/mnist.rs +534 -0
- shrew_python-0.1.0/crates/shrew-data/src/transform.rs +137 -0
- shrew_python-0.1.0/crates/shrew-data/tests/data_tests.rs +369 -0
- shrew_python-0.1.0/crates/shrew-ir/Cargo.toml +14 -0
- shrew_python-0.1.0/crates/shrew-ir/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-ir/README.md +14 -0
- shrew_python-0.1.0/crates/shrew-ir/src/ast.rs +527 -0
- shrew_python-0.1.0/crates/shrew-ir/src/error.rs +86 -0
- shrew_python-0.1.0/crates/shrew-ir/src/graph.rs +691 -0
- shrew_python-0.1.0/crates/shrew-ir/src/lexer.rs +739 -0
- shrew_python-0.1.0/crates/shrew-ir/src/lib.rs +41 -0
- shrew_python-0.1.0/crates/shrew-ir/src/lower.rs +965 -0
- shrew_python-0.1.0/crates/shrew-ir/src/optimize.rs +629 -0
- shrew_python-0.1.0/crates/shrew-ir/src/parser.rs +1362 -0
- shrew_python-0.1.0/crates/shrew-ir/src/shapes.rs +540 -0
- shrew_python-0.1.0/crates/shrew-ir/src/token.rs +377 -0
- shrew_python-0.1.0/crates/shrew-ir/src/validate.rs +565 -0
- shrew_python-0.1.0/crates/shrew-ir/tests/lower_tests.rs +537 -0
- shrew_python-0.1.0/crates/shrew-ir/tests/parser_tests.rs +717 -0
- shrew_python-0.1.0/crates/shrew-ir/tests/passes_tests.rs +813 -0
- shrew_python-0.1.0/crates/shrew-nn/Cargo.toml +15 -0
- shrew_python-0.1.0/crates/shrew-nn/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-nn/README.md +20 -0
- shrew_python-0.1.0/crates/shrew-nn/src/activation.rs +183 -0
- shrew_python-0.1.0/crates/shrew-nn/src/attention.rs +274 -0
- shrew_python-0.1.0/crates/shrew-nn/src/batchnorm.rs +267 -0
- shrew_python-0.1.0/crates/shrew-nn/src/conv.rs +412 -0
- shrew_python-0.1.0/crates/shrew-nn/src/dropout.rs +97 -0
- shrew_python-0.1.0/crates/shrew-nn/src/embedding.rs +123 -0
- shrew_python-0.1.0/crates/shrew-nn/src/flatten.rs +72 -0
- shrew_python-0.1.0/crates/shrew-nn/src/groupnorm.rs +139 -0
- shrew_python-0.1.0/crates/shrew-nn/src/init.rs +310 -0
- shrew_python-0.1.0/crates/shrew-nn/src/layernorm.rs +152 -0
- shrew_python-0.1.0/crates/shrew-nn/src/lib.rs +60 -0
- shrew_python-0.1.0/crates/shrew-nn/src/linear.rs +175 -0
- shrew_python-0.1.0/crates/shrew-nn/src/loss.rs +305 -0
- shrew_python-0.1.0/crates/shrew-nn/src/metrics.rs +559 -0
- shrew_python-0.1.0/crates/shrew-nn/src/module.rs +126 -0
- shrew_python-0.1.0/crates/shrew-nn/src/rmsnorm.rs +95 -0
- shrew_python-0.1.0/crates/shrew-nn/src/rnn.rs +667 -0
- shrew_python-0.1.0/crates/shrew-nn/src/sequential.rs +89 -0
- shrew_python-0.1.0/crates/shrew-nn/src/transformer.rs +191 -0
- shrew_python-0.1.0/crates/shrew-optim/Cargo.toml +14 -0
- shrew_python-0.1.0/crates/shrew-optim/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-optim/README.md +19 -0
- shrew_python-0.1.0/crates/shrew-optim/src/adam.rs +348 -0
- shrew_python-0.1.0/crates/shrew-optim/src/clip.rs +241 -0
- shrew_python-0.1.0/crates/shrew-optim/src/ema.rs +162 -0
- shrew_python-0.1.0/crates/shrew-optim/src/lib.rs +39 -0
- shrew_python-0.1.0/crates/shrew-optim/src/optimizer.rs +116 -0
- shrew_python-0.1.0/crates/shrew-optim/src/radam.rs +274 -0
- shrew_python-0.1.0/crates/shrew-optim/src/rmsprop.rs +236 -0
- shrew_python-0.1.0/crates/shrew-optim/src/scheduler.rs +466 -0
- shrew_python-0.1.0/crates/shrew-optim/src/sgd.rs +178 -0
- shrew_python-0.1.0/crates/shrew-python/Cargo.toml +26 -0
- shrew_python-0.1.0/crates/shrew-python/LICENSE +176 -0
- shrew_python-0.1.0/crates/shrew-python/README.md +49 -0
- shrew_python-0.1.0/crates/shrew-python/src/lib.rs +2616 -0
- shrew_python-0.1.0/pyproject.toml +39 -0
|
@@ -0,0 +1,1806 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aligned"
|
|
13
|
+
version = "0.4.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"as-slice",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aligned-vec"
|
|
22
|
+
version = "0.6.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"equator",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anyhow"
|
|
31
|
+
version = "1.0.101"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "arbitrary"
|
|
37
|
+
version = "1.4.2"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "arg_enum_proc_macro"
|
|
43
|
+
version = "0.3.4"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"proc-macro2",
|
|
48
|
+
"quote",
|
|
49
|
+
"syn",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "arrayvec"
|
|
54
|
+
version = "0.7.6"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "as-slice"
|
|
60
|
+
version = "0.2.1"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"stable_deref_trait",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "autocfg"
|
|
69
|
+
version = "1.5.0"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "av-scenechange"
|
|
75
|
+
version = "0.14.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"aligned",
|
|
80
|
+
"anyhow",
|
|
81
|
+
"arg_enum_proc_macro",
|
|
82
|
+
"arrayvec",
|
|
83
|
+
"log",
|
|
84
|
+
"num-rational",
|
|
85
|
+
"num-traits",
|
|
86
|
+
"pastey",
|
|
87
|
+
"rayon",
|
|
88
|
+
"thiserror 2.0.18",
|
|
89
|
+
"v_frame",
|
|
90
|
+
"y4m",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "av1-grain"
|
|
95
|
+
version = "0.2.5"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"anyhow",
|
|
100
|
+
"arrayvec",
|
|
101
|
+
"log",
|
|
102
|
+
"nom",
|
|
103
|
+
"num-rational",
|
|
104
|
+
"v_frame",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "avif-serialize"
|
|
109
|
+
version = "0.8.8"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"arrayvec",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "bit_field"
|
|
118
|
+
version = "0.10.3"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "bitflags"
|
|
124
|
+
version = "2.11.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "bitstream-io"
|
|
130
|
+
version = "4.9.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"core2",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "built"
|
|
139
|
+
version = "0.8.0"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bumpalo"
|
|
145
|
+
version = "3.19.1"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "bytemuck"
|
|
151
|
+
version = "1.25.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"bytemuck_derive",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "bytemuck_derive"
|
|
160
|
+
version = "1.10.2"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"proc-macro2",
|
|
165
|
+
"quote",
|
|
166
|
+
"syn",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "byteorder"
|
|
171
|
+
version = "1.5.0"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "byteorder-lite"
|
|
177
|
+
version = "0.1.0"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "cc"
|
|
183
|
+
version = "1.2.56"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"find-msvc-tools",
|
|
188
|
+
"jobserver",
|
|
189
|
+
"libc",
|
|
190
|
+
"shlex",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "cfg-if"
|
|
195
|
+
version = "1.0.4"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "char-gpt-example"
|
|
201
|
+
version = "0.1.0"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"shrew",
|
|
204
|
+
"shrew-core",
|
|
205
|
+
"shrew-cpu",
|
|
206
|
+
"shrew-nn",
|
|
207
|
+
"shrew-optim",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "color_quant"
|
|
212
|
+
version = "1.1.0"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "core2"
|
|
218
|
+
version = "0.4.0"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"memchr",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "crc32fast"
|
|
227
|
+
version = "1.5.0"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"cfg-if",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "crossbeam-deque"
|
|
236
|
+
version = "0.8.6"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"crossbeam-epoch",
|
|
241
|
+
"crossbeam-utils",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "crossbeam-epoch"
|
|
246
|
+
version = "0.9.18"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"crossbeam-utils",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "crossbeam-utils"
|
|
255
|
+
version = "0.8.21"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "crunchy"
|
|
261
|
+
version = "0.2.4"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "cudarc"
|
|
267
|
+
version = "0.12.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"libloading",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "dyn-stack"
|
|
276
|
+
version = "0.13.2"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"bytemuck",
|
|
281
|
+
"dyn-stack-macros",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "dyn-stack-macros"
|
|
286
|
+
version = "0.1.3"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "either"
|
|
292
|
+
version = "1.15.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "enum-as-inner"
|
|
298
|
+
version = "0.6.1"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"heck",
|
|
303
|
+
"proc-macro2",
|
|
304
|
+
"quote",
|
|
305
|
+
"syn",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "equator"
|
|
310
|
+
version = "0.4.2"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"equator-macro",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "equator-macro"
|
|
319
|
+
version = "0.4.2"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"proc-macro2",
|
|
324
|
+
"quote",
|
|
325
|
+
"syn",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "example-bench-ops"
|
|
330
|
+
version = "0.1.0"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"shrew",
|
|
333
|
+
"shrew-core",
|
|
334
|
+
"shrew-cpu",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "example-gpu-demo"
|
|
339
|
+
version = "0.1.0"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"shrew",
|
|
342
|
+
"shrew-core",
|
|
343
|
+
"shrew-cpu",
|
|
344
|
+
"shrew-cuda",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "example-linear-regression"
|
|
349
|
+
version = "0.1.0"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"shrew",
|
|
352
|
+
"shrew-core",
|
|
353
|
+
"shrew-cpu",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "example-mlp-xor"
|
|
358
|
+
version = "0.1.0"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"shrew",
|
|
361
|
+
"shrew-core",
|
|
362
|
+
"shrew-cpu",
|
|
363
|
+
"shrew-nn",
|
|
364
|
+
"shrew-optim",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "example-rnn-sequence"
|
|
369
|
+
version = "0.1.0"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"shrew",
|
|
372
|
+
"shrew-core",
|
|
373
|
+
"shrew-cpu",
|
|
374
|
+
"shrew-nn",
|
|
375
|
+
"shrew-optim",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "exr"
|
|
380
|
+
version = "1.74.0"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"bit_field",
|
|
385
|
+
"half",
|
|
386
|
+
"lebe",
|
|
387
|
+
"miniz_oxide",
|
|
388
|
+
"rayon-core",
|
|
389
|
+
"smallvec",
|
|
390
|
+
"zune-inflate",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "fax"
|
|
395
|
+
version = "0.2.6"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"fax_derive",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "fax_derive"
|
|
404
|
+
version = "0.2.0"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"proc-macro2",
|
|
409
|
+
"quote",
|
|
410
|
+
"syn",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "fdeflate"
|
|
415
|
+
version = "0.3.7"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"simd-adler32",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "find-msvc-tools"
|
|
424
|
+
version = "0.1.9"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "flate2"
|
|
430
|
+
version = "1.1.9"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"crc32fast",
|
|
435
|
+
"miniz_oxide",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "gemm"
|
|
440
|
+
version = "0.18.2"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"dyn-stack",
|
|
445
|
+
"gemm-c32",
|
|
446
|
+
"gemm-c64",
|
|
447
|
+
"gemm-common",
|
|
448
|
+
"gemm-f16",
|
|
449
|
+
"gemm-f32",
|
|
450
|
+
"gemm-f64",
|
|
451
|
+
"num-complex",
|
|
452
|
+
"num-traits",
|
|
453
|
+
"paste",
|
|
454
|
+
"raw-cpuid",
|
|
455
|
+
"seq-macro",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "gemm-c32"
|
|
460
|
+
version = "0.18.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"dyn-stack",
|
|
465
|
+
"gemm-common",
|
|
466
|
+
"num-complex",
|
|
467
|
+
"num-traits",
|
|
468
|
+
"paste",
|
|
469
|
+
"raw-cpuid",
|
|
470
|
+
"seq-macro",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "gemm-c64"
|
|
475
|
+
version = "0.18.2"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"dyn-stack",
|
|
480
|
+
"gemm-common",
|
|
481
|
+
"num-complex",
|
|
482
|
+
"num-traits",
|
|
483
|
+
"paste",
|
|
484
|
+
"raw-cpuid",
|
|
485
|
+
"seq-macro",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "gemm-common"
|
|
490
|
+
version = "0.18.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"bytemuck",
|
|
495
|
+
"dyn-stack",
|
|
496
|
+
"half",
|
|
497
|
+
"libm",
|
|
498
|
+
"num-complex",
|
|
499
|
+
"num-traits",
|
|
500
|
+
"once_cell",
|
|
501
|
+
"paste",
|
|
502
|
+
"pulp",
|
|
503
|
+
"raw-cpuid",
|
|
504
|
+
"rayon",
|
|
505
|
+
"seq-macro",
|
|
506
|
+
"sysctl",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "gemm-f16"
|
|
511
|
+
version = "0.18.2"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"dyn-stack",
|
|
516
|
+
"gemm-common",
|
|
517
|
+
"gemm-f32",
|
|
518
|
+
"half",
|
|
519
|
+
"num-complex",
|
|
520
|
+
"num-traits",
|
|
521
|
+
"paste",
|
|
522
|
+
"raw-cpuid",
|
|
523
|
+
"rayon",
|
|
524
|
+
"seq-macro",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "gemm-f32"
|
|
529
|
+
version = "0.18.2"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"dyn-stack",
|
|
534
|
+
"gemm-common",
|
|
535
|
+
"num-complex",
|
|
536
|
+
"num-traits",
|
|
537
|
+
"paste",
|
|
538
|
+
"raw-cpuid",
|
|
539
|
+
"seq-macro",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "gemm-f64"
|
|
544
|
+
version = "0.18.2"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"dyn-stack",
|
|
549
|
+
"gemm-common",
|
|
550
|
+
"num-complex",
|
|
551
|
+
"num-traits",
|
|
552
|
+
"paste",
|
|
553
|
+
"raw-cpuid",
|
|
554
|
+
"seq-macro",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "getrandom"
|
|
559
|
+
version = "0.2.17"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"cfg-if",
|
|
564
|
+
"libc",
|
|
565
|
+
"wasi",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "getrandom"
|
|
570
|
+
version = "0.3.4"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"cfg-if",
|
|
575
|
+
"libc",
|
|
576
|
+
"r-efi",
|
|
577
|
+
"wasip2",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "gif"
|
|
582
|
+
version = "0.14.1"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"color_quant",
|
|
587
|
+
"weezl",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "half"
|
|
592
|
+
version = "2.7.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"bytemuck",
|
|
597
|
+
"cfg-if",
|
|
598
|
+
"crunchy",
|
|
599
|
+
"num-traits",
|
|
600
|
+
"zerocopy",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "heck"
|
|
605
|
+
version = "0.5.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "image"
|
|
611
|
+
version = "0.25.9"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"bytemuck",
|
|
616
|
+
"byteorder-lite",
|
|
617
|
+
"color_quant",
|
|
618
|
+
"exr",
|
|
619
|
+
"gif",
|
|
620
|
+
"image-webp",
|
|
621
|
+
"moxcms",
|
|
622
|
+
"num-traits",
|
|
623
|
+
"png",
|
|
624
|
+
"qoi",
|
|
625
|
+
"ravif",
|
|
626
|
+
"rayon",
|
|
627
|
+
"rgb",
|
|
628
|
+
"tiff",
|
|
629
|
+
"zune-core 0.5.1",
|
|
630
|
+
"zune-jpeg 0.5.12",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "image-webp"
|
|
635
|
+
version = "0.2.4"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"byteorder-lite",
|
|
640
|
+
"quick-error",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "imgref"
|
|
645
|
+
version = "1.12.0"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "indoc"
|
|
651
|
+
version = "2.0.7"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"rustversion",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "interpolate_name"
|
|
660
|
+
version = "0.2.4"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"proc-macro2",
|
|
665
|
+
"quote",
|
|
666
|
+
"syn",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "itertools"
|
|
671
|
+
version = "0.14.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"either",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "itoa"
|
|
680
|
+
version = "1.0.17"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "jobserver"
|
|
686
|
+
version = "0.1.34"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"getrandom 0.3.4",
|
|
691
|
+
"libc",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "lebe"
|
|
696
|
+
version = "0.5.3"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "libc"
|
|
702
|
+
version = "0.2.182"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "libfuzzer-sys"
|
|
708
|
+
version = "0.4.12"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"arbitrary",
|
|
713
|
+
"cc",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "libloading"
|
|
718
|
+
version = "0.8.9"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"cfg-if",
|
|
723
|
+
"windows-link",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "libm"
|
|
728
|
+
version = "0.2.16"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "log"
|
|
734
|
+
version = "0.4.29"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "loop9"
|
|
740
|
+
version = "0.1.5"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"imgref",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "matrixmultiply"
|
|
749
|
+
version = "0.3.10"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"autocfg",
|
|
754
|
+
"rawpointer",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "maybe-rayon"
|
|
759
|
+
version = "0.1.1"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"cfg-if",
|
|
764
|
+
"rayon",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "memchr"
|
|
769
|
+
version = "2.8.0"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "memoffset"
|
|
775
|
+
version = "0.9.1"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"autocfg",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "miniz_oxide"
|
|
784
|
+
version = "0.8.9"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"adler2",
|
|
789
|
+
"simd-adler32",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "mnist-cnn-example"
|
|
794
|
+
version = "0.1.0"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"shrew",
|
|
797
|
+
"shrew-core",
|
|
798
|
+
"shrew-cpu",
|
|
799
|
+
"shrew-data",
|
|
800
|
+
"shrew-nn",
|
|
801
|
+
"shrew-optim",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "mnist-example"
|
|
806
|
+
version = "0.1.0"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"shrew",
|
|
809
|
+
"shrew-core",
|
|
810
|
+
"shrew-cpu",
|
|
811
|
+
"shrew-data",
|
|
812
|
+
"shrew-nn",
|
|
813
|
+
"shrew-optim",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "moxcms"
|
|
818
|
+
version = "0.7.11"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"num-traits",
|
|
823
|
+
"pxfm",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "ndarray"
|
|
828
|
+
version = "0.16.1"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"matrixmultiply",
|
|
833
|
+
"num-complex",
|
|
834
|
+
"num-integer",
|
|
835
|
+
"num-traits",
|
|
836
|
+
"portable-atomic",
|
|
837
|
+
"portable-atomic-util",
|
|
838
|
+
"rawpointer",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "new_debug_unreachable"
|
|
843
|
+
version = "1.0.6"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "nom"
|
|
849
|
+
version = "8.0.0"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"memchr",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "noop_proc_macro"
|
|
858
|
+
version = "0.3.0"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "num-bigint"
|
|
864
|
+
version = "0.4.6"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"num-integer",
|
|
869
|
+
"num-traits",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "num-complex"
|
|
874
|
+
version = "0.4.6"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"bytemuck",
|
|
879
|
+
"num-traits",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "num-derive"
|
|
884
|
+
version = "0.4.2"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"proc-macro2",
|
|
889
|
+
"quote",
|
|
890
|
+
"syn",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "num-integer"
|
|
895
|
+
version = "0.1.46"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"num-traits",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "num-rational"
|
|
904
|
+
version = "0.4.2"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"num-bigint",
|
|
909
|
+
"num-integer",
|
|
910
|
+
"num-traits",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "num-traits"
|
|
915
|
+
version = "0.2.19"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"autocfg",
|
|
920
|
+
"libm",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "numpy"
|
|
925
|
+
version = "0.24.0"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"libc",
|
|
930
|
+
"ndarray",
|
|
931
|
+
"num-complex",
|
|
932
|
+
"num-integer",
|
|
933
|
+
"num-traits",
|
|
934
|
+
"pyo3",
|
|
935
|
+
"pyo3-build-config",
|
|
936
|
+
"rustc-hash",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "once_cell"
|
|
941
|
+
version = "1.21.3"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "paste"
|
|
947
|
+
version = "1.0.15"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "pastey"
|
|
953
|
+
version = "0.1.1"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "png"
|
|
959
|
+
version = "0.18.1"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"bitflags",
|
|
964
|
+
"crc32fast",
|
|
965
|
+
"fdeflate",
|
|
966
|
+
"flate2",
|
|
967
|
+
"miniz_oxide",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "portable-atomic"
|
|
972
|
+
version = "1.13.1"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "portable-atomic-util"
|
|
978
|
+
version = "0.2.5"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"portable-atomic",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "ppv-lite86"
|
|
987
|
+
version = "0.2.21"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"zerocopy",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "proc-macro2"
|
|
996
|
+
version = "1.0.106"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"unicode-ident",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "profiling"
|
|
1005
|
+
version = "1.0.17"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"profiling-procmacros",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "profiling-procmacros"
|
|
1014
|
+
version = "1.0.17"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"quote",
|
|
1019
|
+
"syn",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "pulp"
|
|
1024
|
+
version = "0.21.5"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"bytemuck",
|
|
1029
|
+
"cfg-if",
|
|
1030
|
+
"libm",
|
|
1031
|
+
"num-complex",
|
|
1032
|
+
"reborrow",
|
|
1033
|
+
"version_check",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "pxfm"
|
|
1038
|
+
version = "0.1.27"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"num-traits",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "pyo3"
|
|
1047
|
+
version = "0.24.2"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"cfg-if",
|
|
1052
|
+
"indoc",
|
|
1053
|
+
"libc",
|
|
1054
|
+
"memoffset",
|
|
1055
|
+
"once_cell",
|
|
1056
|
+
"portable-atomic",
|
|
1057
|
+
"pyo3-build-config",
|
|
1058
|
+
"pyo3-ffi",
|
|
1059
|
+
"pyo3-macros",
|
|
1060
|
+
"unindent",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "pyo3-build-config"
|
|
1065
|
+
version = "0.24.2"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"once_cell",
|
|
1070
|
+
"target-lexicon",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "pyo3-ffi"
|
|
1075
|
+
version = "0.24.2"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"libc",
|
|
1080
|
+
"pyo3-build-config",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "pyo3-macros"
|
|
1085
|
+
version = "0.24.2"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"proc-macro2",
|
|
1090
|
+
"pyo3-macros-backend",
|
|
1091
|
+
"quote",
|
|
1092
|
+
"syn",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "pyo3-macros-backend"
|
|
1097
|
+
version = "0.24.2"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"heck",
|
|
1102
|
+
"proc-macro2",
|
|
1103
|
+
"pyo3-build-config",
|
|
1104
|
+
"quote",
|
|
1105
|
+
"syn",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "qoi"
|
|
1110
|
+
version = "0.4.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"bytemuck",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "quick-error"
|
|
1119
|
+
version = "2.0.1"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "quote"
|
|
1125
|
+
version = "1.0.44"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"proc-macro2",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "r-efi"
|
|
1134
|
+
version = "5.3.0"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "rand"
|
|
1140
|
+
version = "0.8.5"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"libc",
|
|
1145
|
+
"rand_chacha 0.3.1",
|
|
1146
|
+
"rand_core 0.6.4",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "rand"
|
|
1151
|
+
version = "0.9.2"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"rand_chacha 0.9.0",
|
|
1156
|
+
"rand_core 0.9.5",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "rand_chacha"
|
|
1161
|
+
version = "0.3.1"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"ppv-lite86",
|
|
1166
|
+
"rand_core 0.6.4",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "rand_chacha"
|
|
1171
|
+
version = "0.9.0"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"ppv-lite86",
|
|
1176
|
+
"rand_core 0.9.5",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "rand_core"
|
|
1181
|
+
version = "0.6.4"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"getrandom 0.2.17",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "rand_core"
|
|
1190
|
+
version = "0.9.5"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"getrandom 0.3.4",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "rand_distr"
|
|
1199
|
+
version = "0.4.3"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"num-traits",
|
|
1204
|
+
"rand 0.8.5",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "rav1e"
|
|
1209
|
+
version = "0.8.1"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"aligned-vec",
|
|
1214
|
+
"arbitrary",
|
|
1215
|
+
"arg_enum_proc_macro",
|
|
1216
|
+
"arrayvec",
|
|
1217
|
+
"av-scenechange",
|
|
1218
|
+
"av1-grain",
|
|
1219
|
+
"bitstream-io",
|
|
1220
|
+
"built",
|
|
1221
|
+
"cfg-if",
|
|
1222
|
+
"interpolate_name",
|
|
1223
|
+
"itertools",
|
|
1224
|
+
"libc",
|
|
1225
|
+
"libfuzzer-sys",
|
|
1226
|
+
"log",
|
|
1227
|
+
"maybe-rayon",
|
|
1228
|
+
"new_debug_unreachable",
|
|
1229
|
+
"noop_proc_macro",
|
|
1230
|
+
"num-derive",
|
|
1231
|
+
"num-traits",
|
|
1232
|
+
"paste",
|
|
1233
|
+
"profiling",
|
|
1234
|
+
"rand 0.9.2",
|
|
1235
|
+
"rand_chacha 0.9.0",
|
|
1236
|
+
"simd_helpers",
|
|
1237
|
+
"thiserror 2.0.18",
|
|
1238
|
+
"v_frame",
|
|
1239
|
+
"wasm-bindgen",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "ravif"
|
|
1244
|
+
version = "0.12.0"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"avif-serialize",
|
|
1249
|
+
"imgref",
|
|
1250
|
+
"loop9",
|
|
1251
|
+
"quick-error",
|
|
1252
|
+
"rav1e",
|
|
1253
|
+
"rayon",
|
|
1254
|
+
"rgb",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "raw-cpuid"
|
|
1259
|
+
version = "11.6.0"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"bitflags",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "rawpointer"
|
|
1268
|
+
version = "0.2.1"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "rayon"
|
|
1274
|
+
version = "1.11.0"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"either",
|
|
1279
|
+
"rayon-core",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "rayon-core"
|
|
1284
|
+
version = "1.13.0"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"crossbeam-deque",
|
|
1289
|
+
"crossbeam-utils",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "reborrow"
|
|
1294
|
+
version = "0.5.5"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "rgb"
|
|
1300
|
+
version = "0.8.52"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "rustc-hash"
|
|
1306
|
+
version = "2.1.1"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "rustversion"
|
|
1312
|
+
version = "1.0.22"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "same-file"
|
|
1318
|
+
version = "1.0.6"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"winapi-util",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "seq-macro"
|
|
1327
|
+
version = "0.3.6"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "serde"
|
|
1333
|
+
version = "1.0.228"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"serde_core",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "serde_core"
|
|
1342
|
+
version = "1.0.228"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"serde_derive",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "serde_derive"
|
|
1351
|
+
version = "1.0.228"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"proc-macro2",
|
|
1356
|
+
"quote",
|
|
1357
|
+
"syn",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "serde_json"
|
|
1362
|
+
version = "1.0.149"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"itoa",
|
|
1367
|
+
"memchr",
|
|
1368
|
+
"serde",
|
|
1369
|
+
"serde_core",
|
|
1370
|
+
"zmij",
|
|
1371
|
+
]
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "shlex"
|
|
1375
|
+
version = "1.3.0"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "shrew"
|
|
1381
|
+
version = "0.1.0"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"half",
|
|
1384
|
+
"serde_json",
|
|
1385
|
+
"shrew-core",
|
|
1386
|
+
"shrew-cpu",
|
|
1387
|
+
"shrew-cuda",
|
|
1388
|
+
"shrew-data",
|
|
1389
|
+
"shrew-ir",
|
|
1390
|
+
"shrew-nn",
|
|
1391
|
+
"shrew-optim",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "shrew-cli"
|
|
1396
|
+
version = "0.1.0"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"shrew",
|
|
1399
|
+
"shrew-core",
|
|
1400
|
+
"shrew-cpu",
|
|
1401
|
+
"shrew-ir",
|
|
1402
|
+
"shrew-optim",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "shrew-core"
|
|
1407
|
+
version = "0.1.0"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"half",
|
|
1410
|
+
"num-traits",
|
|
1411
|
+
"rand 0.8.5",
|
|
1412
|
+
"rand_distr",
|
|
1413
|
+
"thiserror 2.0.18",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "shrew-cpu"
|
|
1418
|
+
version = "0.1.0"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"gemm",
|
|
1421
|
+
"half",
|
|
1422
|
+
"num-traits",
|
|
1423
|
+
"rand 0.8.5",
|
|
1424
|
+
"rand_distr",
|
|
1425
|
+
"rayon",
|
|
1426
|
+
"shrew-core",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "shrew-cuda"
|
|
1431
|
+
version = "0.1.0"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"cudarc",
|
|
1434
|
+
"half",
|
|
1435
|
+
"rand 0.8.5",
|
|
1436
|
+
"rand_distr",
|
|
1437
|
+
"shrew-core",
|
|
1438
|
+
"shrew-nn",
|
|
1439
|
+
"shrew-optim",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "shrew-data"
|
|
1444
|
+
version = "0.1.0"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"image",
|
|
1447
|
+
"rand 0.8.5",
|
|
1448
|
+
"rand_distr",
|
|
1449
|
+
"rayon",
|
|
1450
|
+
"shrew-core",
|
|
1451
|
+
"shrew-cpu",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "shrew-ir"
|
|
1456
|
+
version = "0.1.0"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"thiserror 2.0.18",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "shrew-nn"
|
|
1463
|
+
version = "0.1.0"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"shrew-core",
|
|
1466
|
+
"shrew-cpu",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "shrew-optim"
|
|
1471
|
+
version = "0.1.0"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"shrew-core",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "shrew-python"
|
|
1478
|
+
version = "0.1.0"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"numpy",
|
|
1481
|
+
"pyo3",
|
|
1482
|
+
"shrew",
|
|
1483
|
+
"shrew-core",
|
|
1484
|
+
"shrew-cpu",
|
|
1485
|
+
"shrew-data",
|
|
1486
|
+
"shrew-nn",
|
|
1487
|
+
"shrew-optim",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "simd-adler32"
|
|
1492
|
+
version = "0.3.8"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "simd_helpers"
|
|
1498
|
+
version = "0.1.0"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"quote",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "smallvec"
|
|
1507
|
+
version = "1.15.1"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "stable_deref_trait"
|
|
1513
|
+
version = "1.2.1"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "syn"
|
|
1519
|
+
version = "2.0.115"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"proc-macro2",
|
|
1524
|
+
"quote",
|
|
1525
|
+
"unicode-ident",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "sysctl"
|
|
1530
|
+
version = "0.6.0"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"bitflags",
|
|
1535
|
+
"byteorder",
|
|
1536
|
+
"enum-as-inner",
|
|
1537
|
+
"libc",
|
|
1538
|
+
"thiserror 1.0.69",
|
|
1539
|
+
"walkdir",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "target-lexicon"
|
|
1544
|
+
version = "0.13.4"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "thiserror"
|
|
1550
|
+
version = "1.0.69"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"thiserror-impl 1.0.69",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "thiserror"
|
|
1559
|
+
version = "2.0.18"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"thiserror-impl 2.0.18",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "thiserror-impl"
|
|
1568
|
+
version = "1.0.69"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"syn",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "thiserror-impl"
|
|
1579
|
+
version = "2.0.18"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"proc-macro2",
|
|
1584
|
+
"quote",
|
|
1585
|
+
"syn",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "tiff"
|
|
1590
|
+
version = "0.10.3"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"fax",
|
|
1595
|
+
"flate2",
|
|
1596
|
+
"half",
|
|
1597
|
+
"quick-error",
|
|
1598
|
+
"weezl",
|
|
1599
|
+
"zune-jpeg 0.4.21",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "unicode-ident"
|
|
1604
|
+
version = "1.0.23"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "unindent"
|
|
1610
|
+
version = "0.2.4"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "v_frame"
|
|
1616
|
+
version = "0.3.9"
|
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
1619
|
+
dependencies = [
|
|
1620
|
+
"aligned-vec",
|
|
1621
|
+
"num-traits",
|
|
1622
|
+
"wasm-bindgen",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "version_check"
|
|
1627
|
+
version = "0.9.5"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "walkdir"
|
|
1633
|
+
version = "2.5.0"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"same-file",
|
|
1638
|
+
"winapi-util",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "wasi"
|
|
1643
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "wasip2"
|
|
1649
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1652
|
+
dependencies = [
|
|
1653
|
+
"wit-bindgen",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "wasm-bindgen"
|
|
1658
|
+
version = "0.2.108"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"cfg-if",
|
|
1663
|
+
"once_cell",
|
|
1664
|
+
"rustversion",
|
|
1665
|
+
"wasm-bindgen-macro",
|
|
1666
|
+
"wasm-bindgen-shared",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "wasm-bindgen-macro"
|
|
1671
|
+
version = "0.2.108"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"quote",
|
|
1676
|
+
"wasm-bindgen-macro-support",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "wasm-bindgen-macro-support"
|
|
1681
|
+
version = "0.2.108"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"bumpalo",
|
|
1686
|
+
"proc-macro2",
|
|
1687
|
+
"quote",
|
|
1688
|
+
"syn",
|
|
1689
|
+
"wasm-bindgen-shared",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "wasm-bindgen-shared"
|
|
1694
|
+
version = "0.2.108"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"unicode-ident",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "weezl"
|
|
1703
|
+
version = "0.1.12"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "winapi-util"
|
|
1709
|
+
version = "0.1.11"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"windows-sys",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "windows-link"
|
|
1718
|
+
version = "0.2.1"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "windows-sys"
|
|
1724
|
+
version = "0.61.2"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"windows-link",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "wit-bindgen"
|
|
1733
|
+
version = "0.51.0"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "y4m"
|
|
1739
|
+
version = "0.8.0"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "zerocopy"
|
|
1745
|
+
version = "0.8.39"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
1748
|
+
dependencies = [
|
|
1749
|
+
"zerocopy-derive",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "zerocopy-derive"
|
|
1754
|
+
version = "0.8.39"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
1757
|
+
dependencies = [
|
|
1758
|
+
"proc-macro2",
|
|
1759
|
+
"quote",
|
|
1760
|
+
"syn",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "zmij"
|
|
1765
|
+
version = "1.0.21"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "zune-core"
|
|
1771
|
+
version = "0.4.12"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "zune-core"
|
|
1777
|
+
version = "0.5.1"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "zune-inflate"
|
|
1783
|
+
version = "0.2.54"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"simd-adler32",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "zune-jpeg"
|
|
1792
|
+
version = "0.4.21"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"zune-core 0.4.12",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "zune-jpeg"
|
|
1801
|
+
version = "0.5.12"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "410e9ecef634c709e3831c2cfdb8d9c32164fae1c67496d5b68fff728eec37fe"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"zune-core 0.5.1",
|
|
1806
|
+
]
|