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