Sat, 21 Dec 2024 23:32:20 -0500
Move origin stuff to AXPY form Euclidean
0 | 1 | # This file is automatically @generated by Cargo. |
2 | # It is not intended for manual editing. | |
3 | version = 3 | |
4 | ||
5 | [[package]] | |
6 | name = "alg_tools" | |
40
daf0e3a70c79
New iteration interface, allowing for loops.
Tuomo Valkonen <tuomov@iki.fi>
parents:
37
diff
changeset
|
7 | version = "0.3.0-dev" |
0 | 8 | dependencies = [ |
9 | "colored", | |
10 | "cpu-time", | |
11 | "csv", | |
12 | "itertools", | |
13 | "nalgebra", | |
14 | "num", | |
15 | "num-traits", | |
16 | "numeric_literals", | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
17 | "rayon", |
0 | 18 | "serde", |
19 | "serde_json", | |
59
9226980e45a7
Significantly simplify Mapping / Apply through Instance
Tuomo Valkonen <tuomov@iki.fi>
parents:
56
diff
changeset
|
20 | "simba", |
0 | 21 | ] |
22 | ||
23 | [[package]] | |
24 | name = "approx" | |
25 | version = "0.5.1" | |
26 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
27 | checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" | |
28 | dependencies = [ | |
29 | "num-traits", | |
30 | ] | |
31 | ||
32 | [[package]] | |
33 | name = "autocfg" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
34 | version = "1.4.0" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
35 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
36 | checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" |
0 | 37 | |
38 | [[package]] | |
39 | name = "bytemuck" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
40 | version = "1.20.0" |
0 | 41 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
42 | checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
43 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
44 | [[package]] |
0 | 45 | name = "colored" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
46 | version = "2.1.0" |
0 | 47 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
48 | checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" |
0 | 49 | dependencies = [ |
50 | "lazy_static", | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
51 | "windows-sys", |
0 | 52 | ] |
53 | ||
54 | [[package]] | |
55 | name = "cpu-time" | |
56 | version = "1.0.0" | |
57 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
58 | checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded" | |
59 | dependencies = [ | |
60 | "libc", | |
61 | "winapi", | |
62 | ] | |
63 | ||
64 | [[package]] | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
65 | name = "crossbeam-deque" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
66 | version = "0.8.5" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
67 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
68 | checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
69 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
70 | "crossbeam-epoch", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
71 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
72 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
73 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
74 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
75 | name = "crossbeam-epoch" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
76 | version = "0.9.18" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
77 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
78 | checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
79 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
80 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
81 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
82 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
83 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
84 | name = "crossbeam-utils" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
85 | version = "0.8.20" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
86 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
87 | checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
88 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
89 | [[package]] |
0 | 90 | name = "csv" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
91 | version = "1.3.1" |
0 | 92 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
93 | checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" |
0 | 94 | dependencies = [ |
95 | "csv-core", | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
96 | "itoa", |
0 | 97 | "ryu", |
98 | "serde", | |
99 | ] | |
100 | ||
101 | [[package]] | |
102 | name = "csv-core" | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
103 | version = "0.1.11" |
0 | 104 | source = "registry+https://github.com/rust-lang/crates.io-index" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
105 | checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" |
0 | 106 | dependencies = [ |
107 | "memchr", | |
108 | ] | |
109 | ||
110 | [[package]] | |
111 | name = "either" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
112 | version = "1.13.0" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
113 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
114 | checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" |
0 | 115 | |
116 | [[package]] | |
117 | name = "itertools" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
118 | version = "0.13.0" |
0 | 119 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
120 | checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" |
0 | 121 | dependencies = [ |
122 | "either", | |
123 | ] | |
124 | ||
125 | [[package]] | |
126 | name = "itoa" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
127 | version = "1.0.14" |
0 | 128 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
129 | checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" |
0 | 130 | |
131 | [[package]] | |
132 | name = "lazy_static" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
133 | version = "1.5.0" |
0 | 134 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
135 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" |
0 | 136 | |
137 | [[package]] | |
138 | name = "libc" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
139 | version = "0.2.168" |
0 | 140 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
141 | checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" |
0 | 142 | |
143 | [[package]] | |
144 | name = "matrixmultiply" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
145 | version = "0.3.9" |
0 | 146 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
147 | checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" |
0 | 148 | dependencies = [ |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
149 | "autocfg", |
0 | 150 | "rawpointer", |
151 | ] | |
152 | ||
153 | [[package]] | |
154 | name = "memchr" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
155 | version = "2.7.4" |
0 | 156 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
157 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
158 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
159 | [[package]] |
0 | 160 | name = "nalgebra" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
161 | version = "0.33.2" |
0 | 162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
163 | checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b" |
0 | 164 | dependencies = [ |
165 | "approx", | |
166 | "matrixmultiply", | |
167 | "nalgebra-macros", | |
168 | "num-complex", | |
169 | "num-rational", | |
170 | "num-traits", | |
171 | "simba", | |
172 | "typenum", | |
173 | ] | |
174 | ||
175 | [[package]] | |
176 | name = "nalgebra-macros" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
177 | version = "0.2.2" |
0 | 178 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
179 | checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" |
0 | 180 | dependencies = [ |
181 | "proc-macro2", | |
182 | "quote", | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
183 | "syn 2.0.90", |
0 | 184 | ] |
185 | ||
186 | [[package]] | |
187 | name = "num" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
188 | version = "0.4.3" |
0 | 189 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
190 | checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" |
0 | 191 | dependencies = [ |
192 | "num-bigint", | |
193 | "num-complex", | |
194 | "num-integer", | |
195 | "num-iter", | |
196 | "num-rational", | |
197 | "num-traits", | |
198 | ] | |
199 | ||
200 | [[package]] | |
201 | name = "num-bigint" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
202 | version = "0.4.6" |
0 | 203 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
204 | checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" |
0 | 205 | dependencies = [ |
206 | "num-integer", | |
207 | "num-traits", | |
208 | ] | |
209 | ||
210 | [[package]] | |
211 | name = "num-complex" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
212 | version = "0.4.6" |
0 | 213 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
214 | checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" |
0 | 215 | dependencies = [ |
216 | "num-traits", | |
217 | ] | |
218 | ||
219 | [[package]] | |
220 | name = "num-integer" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
221 | version = "0.1.46" |
0 | 222 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
223 | checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" |
0 | 224 | dependencies = [ |
225 | "num-traits", | |
226 | ] | |
227 | ||
228 | [[package]] | |
229 | name = "num-iter" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
230 | version = "0.1.45" |
0 | 231 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
232 | checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" |
0 | 233 | dependencies = [ |
234 | "autocfg", | |
235 | "num-integer", | |
236 | "num-traits", | |
237 | ] | |
238 | ||
239 | [[package]] | |
240 | name = "num-rational" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
241 | version = "0.4.2" |
0 | 242 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
243 | checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" |
0 | 244 | dependencies = [ |
245 | "num-bigint", | |
246 | "num-integer", | |
247 | "num-traits", | |
248 | ] | |
249 | ||
250 | [[package]] | |
251 | name = "num-traits" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
252 | version = "0.2.19" |
0 | 253 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
254 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" |
0 | 255 | dependencies = [ |
256 | "autocfg", | |
257 | ] | |
258 | ||
259 | [[package]] | |
260 | name = "numeric_literals" | |
261 | version = "0.2.0" | |
262 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
263 | checksum = "095aa67b0b9f2081746998f4f17106bdb51d56dc8c211afca5531b92b83bf98a" | |
264 | dependencies = [ | |
265 | "quote", | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
266 | "syn 1.0.109", |
0 | 267 | ] |
268 | ||
269 | [[package]] | |
270 | name = "paste" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
271 | version = "1.0.15" |
0 | 272 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
273 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" |
0 | 274 | |
275 | [[package]] | |
276 | name = "proc-macro2" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
277 | version = "1.0.92" |
0 | 278 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
279 | checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" |
0 | 280 | dependencies = [ |
281 | "unicode-ident", | |
282 | ] | |
283 | ||
284 | [[package]] | |
285 | name = "quote" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
286 | version = "1.0.37" |
0 | 287 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
288 | checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" |
0 | 289 | dependencies = [ |
290 | "proc-macro2", | |
291 | ] | |
292 | ||
293 | [[package]] | |
294 | name = "rawpointer" | |
295 | version = "0.2.1" | |
296 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
297 | checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" | |
298 | ||
299 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
300 | name = "rayon" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
301 | version = "1.10.0" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
302 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
303 | checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
304 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
305 | "either", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
306 | "rayon-core", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
307 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
308 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
309 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
310 | name = "rayon-core" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
311 | version = "1.12.1" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
312 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
313 | checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
314 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
315 | "crossbeam-deque", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
316 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
317 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
318 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
319 | [[package]] |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
320 | name = "ryu" |
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
321 | version = "1.0.18" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
322 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
323 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" |
0 | 324 | |
325 | [[package]] | |
326 | name = "safe_arch" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
327 | version = "0.7.2" |
0 | 328 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
329 | checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" |
0 | 330 | dependencies = [ |
331 | "bytemuck", | |
332 | ] | |
333 | ||
334 | [[package]] | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
335 | name = "serde" |
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
336 | version = "1.0.216" |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
337 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
338 | checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" |
0 | 339 | dependencies = [ |
340 | "serde_derive", | |
341 | ] | |
342 | ||
343 | [[package]] | |
344 | name = "serde_derive" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
345 | version = "1.0.216" |
0 | 346 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
347 | checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" |
0 | 348 | dependencies = [ |
349 | "proc-macro2", | |
350 | "quote", | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
351 | "syn 2.0.90", |
0 | 352 | ] |
353 | ||
354 | [[package]] | |
355 | name = "serde_json" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
356 | version = "1.0.133" |
0 | 357 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
358 | checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" |
0 | 359 | dependencies = [ |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
360 | "itoa", |
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
361 | "memchr", |
0 | 362 | "ryu", |
363 | "serde", | |
364 | ] | |
365 | ||
366 | [[package]] | |
367 | name = "simba" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
368 | version = "0.9.0" |
0 | 369 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
370 | checksum = "b3a386a501cd104797982c15ae17aafe8b9261315b5d07e3ec803f2ea26be0fa" |
0 | 371 | dependencies = [ |
372 | "approx", | |
373 | "num-complex", | |
374 | "num-traits", | |
375 | "paste", | |
376 | "wide", | |
377 | ] | |
378 | ||
379 | [[package]] | |
380 | name = "syn" | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
381 | version = "1.0.109" |
0 | 382 | source = "registry+https://github.com/rust-lang/crates.io-index" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
383 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
384 | dependencies = [ |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
385 | "proc-macro2", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
386 | "quote", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
387 | "unicode-ident", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
388 | ] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
389 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
390 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
391 | name = "syn" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
392 | version = "2.0.90" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
393 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
394 | checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" |
0 | 395 | dependencies = [ |
396 | "proc-macro2", | |
397 | "quote", | |
398 | "unicode-ident", | |
399 | ] | |
400 | ||
401 | [[package]] | |
402 | name = "typenum" | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
403 | version = "1.17.0" |
0 | 404 | source = "registry+https://github.com/rust-lang/crates.io-index" |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
405 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" |
0 | 406 | |
407 | [[package]] | |
408 | name = "unicode-ident" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
409 | version = "1.0.14" |
0 | 410 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
411 | checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" |
0 | 412 | |
413 | [[package]] | |
414 | name = "wide" | |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
415 | version = "0.7.30" |
0 | 416 | source = "registry+https://github.com/rust-lang/crates.io-index" |
56
5e3c1874797d
Update dependencies. Nalgebra update required code changes.
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
417 | checksum = "58e6db2670d2be78525979e9a5f9c69d296fd7d670549fe9ebf70f8708cb5019" |
0 | 418 | dependencies = [ |
419 | "bytemuck", | |
420 | "safe_arch", | |
421 | ] | |
422 | ||
423 | [[package]] | |
424 | name = "winapi" | |
425 | version = "0.3.9" | |
426 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
427 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | |
428 | dependencies = [ | |
429 | "winapi-i686-pc-windows-gnu", | |
430 | "winapi-x86_64-pc-windows-gnu", | |
431 | ] | |
432 | ||
433 | [[package]] | |
434 | name = "winapi-i686-pc-windows-gnu" | |
435 | version = "0.4.0" | |
436 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
437 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | |
438 | ||
439 | [[package]] | |
440 | name = "winapi-x86_64-pc-windows-gnu" | |
441 | version = "0.4.0" | |
442 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
443 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | |
22
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
444 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
445 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
446 | name = "windows-sys" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
447 | version = "0.48.0" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
448 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
449 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
450 | dependencies = [ |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
451 | "windows-targets", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
452 | ] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
453 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
454 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
455 | name = "windows-targets" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
456 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
457 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
458 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
459 | dependencies = [ |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
460 | "windows_aarch64_gnullvm", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
461 | "windows_aarch64_msvc", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
462 | "windows_i686_gnu", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
463 | "windows_i686_msvc", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
464 | "windows_x86_64_gnu", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
465 | "windows_x86_64_gnullvm", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
466 | "windows_x86_64_msvc", |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
467 | ] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
468 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
469 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
470 | name = "windows_aarch64_gnullvm" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
471 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
472 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
473 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
474 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
475 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
476 | name = "windows_aarch64_msvc" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
477 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
478 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
479 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
480 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
481 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
482 | name = "windows_i686_gnu" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
483 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
484 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
485 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
486 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
487 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
488 | name = "windows_i686_msvc" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
489 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
490 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
491 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
492 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
493 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
494 | name = "windows_x86_64_gnu" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
495 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
497 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
498 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
499 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
500 | name = "windows_x86_64_gnullvm" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
501 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
502 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
503 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
504 | |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
505 | [[package]] |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
506 | name = "windows_x86_64_msvc" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
507 | version = "0.48.5" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
508 | source = "registry+https://github.com/rust-lang/crates.io-index" |
013274b0b388
Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
509 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" |