diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 597 |
1 files changed, 597 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 000000000..953a71ee0 --- /dev/null +++ b/Cargo.lock | |||
| @@ -0,0 +1,597 @@ | |||
| 1 | # This file is automatically @generated by Cargo. | ||
| 2 | # It is not intended for manual editing. | ||
| 3 | version = 4 | ||
| 4 | |||
| 5 | [[package]] | ||
| 6 | name = "autocfg" | ||
| 7 | version = "1.5.0" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | ||
| 10 | |||
| 11 | [[package]] | ||
| 12 | name = "bare-metal" | ||
| 13 | version = "0.2.5" | ||
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 15 | checksum = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3" | ||
| 16 | dependencies = [ | ||
| 17 | "rustc_version", | ||
| 18 | ] | ||
| 19 | |||
| 20 | [[package]] | ||
| 21 | name = "bitfield" | ||
| 22 | version = "0.13.2" | ||
| 23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 24 | checksum = "46afbd2983a5d5a7bd740ccb198caf5b82f45c40c09c0eed36052d91cb92e719" | ||
| 25 | |||
| 26 | [[package]] | ||
| 27 | name = "bitflags" | ||
| 28 | version = "1.3.2" | ||
| 29 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 30 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | ||
| 31 | |||
| 32 | [[package]] | ||
| 33 | name = "byteorder" | ||
| 34 | version = "1.5.0" | ||
| 35 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 36 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | ||
| 37 | |||
| 38 | [[package]] | ||
| 39 | name = "cfg-if" | ||
| 40 | version = "1.0.4" | ||
| 41 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 42 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" | ||
| 43 | |||
| 44 | [[package]] | ||
| 45 | name = "cortex-m" | ||
| 46 | version = "0.7.7" | ||
| 47 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 48 | checksum = "8ec610d8f49840a5b376c69663b6369e71f4b34484b9b2eb29fb918d92516cb9" | ||
| 49 | dependencies = [ | ||
| 50 | "bare-metal", | ||
| 51 | "bitfield", | ||
| 52 | "critical-section", | ||
| 53 | "embedded-hal 0.2.7", | ||
| 54 | "volatile-register", | ||
| 55 | ] | ||
| 56 | |||
| 57 | [[package]] | ||
| 58 | name = "cortex-m-rt" | ||
| 59 | version = "0.7.5" | ||
| 60 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 61 | checksum = "801d4dec46b34c299ccf6b036717ae0fce602faa4f4fe816d9013b9a7c9f5ba6" | ||
| 62 | dependencies = [ | ||
| 63 | "cortex-m-rt-macros", | ||
| 64 | ] | ||
| 65 | |||
| 66 | [[package]] | ||
| 67 | name = "cortex-m-rt-macros" | ||
| 68 | version = "0.7.5" | ||
| 69 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 70 | checksum = "e37549a379a9e0e6e576fd208ee60394ccb8be963889eebba3ffe0980364f472" | ||
| 71 | dependencies = [ | ||
| 72 | "proc-macro2", | ||
| 73 | "quote", | ||
| 74 | "syn", | ||
| 75 | ] | ||
| 76 | |||
| 77 | [[package]] | ||
| 78 | name = "critical-section" | ||
| 79 | version = "1.2.0" | ||
| 80 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 81 | checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" | ||
| 82 | |||
| 83 | [[package]] | ||
| 84 | name = "darling" | ||
| 85 | version = "0.20.11" | ||
| 86 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 87 | checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" | ||
| 88 | dependencies = [ | ||
| 89 | "darling_core", | ||
| 90 | "darling_macro", | ||
| 91 | ] | ||
| 92 | |||
| 93 | [[package]] | ||
| 94 | name = "darling_core" | ||
| 95 | version = "0.20.11" | ||
| 96 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 97 | checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" | ||
| 98 | dependencies = [ | ||
| 99 | "fnv", | ||
| 100 | "ident_case", | ||
| 101 | "proc-macro2", | ||
| 102 | "quote", | ||
| 103 | "strsim", | ||
| 104 | "syn", | ||
| 105 | ] | ||
| 106 | |||
| 107 | [[package]] | ||
| 108 | name = "darling_macro" | ||
| 109 | version = "0.20.11" | ||
| 110 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 111 | checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" | ||
| 112 | dependencies = [ | ||
| 113 | "darling_core", | ||
| 114 | "quote", | ||
| 115 | "syn", | ||
| 116 | ] | ||
| 117 | |||
| 118 | [[package]] | ||
| 119 | name = "defmt" | ||
| 120 | version = "1.0.1" | ||
| 121 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 122 | checksum = "548d977b6da32fa1d1fda2876453da1e7df63ad0304c8b3dae4dbe7b96f39b78" | ||
| 123 | dependencies = [ | ||
| 124 | "bitflags", | ||
| 125 | "defmt-macros", | ||
| 126 | ] | ||
| 127 | |||
| 128 | [[package]] | ||
| 129 | name = "defmt-macros" | ||
| 130 | version = "1.0.1" | ||
| 131 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 132 | checksum = "3d4fc12a85bcf441cfe44344c4b72d58493178ce635338a3f3b78943aceb258e" | ||
| 133 | dependencies = [ | ||
| 134 | "defmt-parser", | ||
| 135 | "proc-macro-error2", | ||
| 136 | "proc-macro2", | ||
| 137 | "quote", | ||
| 138 | "syn", | ||
| 139 | ] | ||
| 140 | |||
| 141 | [[package]] | ||
| 142 | name = "defmt-parser" | ||
| 143 | version = "1.0.0" | ||
| 144 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 145 | checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" | ||
| 146 | dependencies = [ | ||
| 147 | "thiserror", | ||
| 148 | ] | ||
| 149 | |||
| 150 | [[package]] | ||
| 151 | name = "defmt-rtt" | ||
| 152 | version = "1.1.0" | ||
| 153 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 154 | checksum = "93d5a25c99d89c40f5676bec8cefe0614f17f0f40e916f98e345dae941807f9e" | ||
| 155 | dependencies = [ | ||
| 156 | "critical-section", | ||
| 157 | "defmt", | ||
| 158 | ] | ||
| 159 | |||
| 160 | [[package]] | ||
| 161 | name = "document-features" | ||
| 162 | version = "0.2.12" | ||
| 163 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 164 | checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61" | ||
| 165 | dependencies = [ | ||
| 166 | "litrs", | ||
| 167 | ] | ||
| 168 | |||
| 169 | [[package]] | ||
| 170 | name = "embassy-embedded-hal" | ||
| 171 | version = "0.5.0" | ||
| 172 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 173 | checksum = "554e3e840696f54b4c9afcf28a0f24da431c927f4151040020416e7393d6d0d8" | ||
| 174 | dependencies = [ | ||
| 175 | "embassy-futures", | ||
| 176 | "embassy-hal-internal", | ||
| 177 | "embassy-sync", | ||
| 178 | "embedded-hal 0.2.7", | ||
| 179 | "embedded-hal 1.0.0", | ||
| 180 | "embedded-hal-async", | ||
| 181 | "embedded-storage", | ||
| 182 | "embedded-storage-async", | ||
| 183 | "nb 1.1.0", | ||
| 184 | ] | ||
| 185 | |||
| 186 | [[package]] | ||
| 187 | name = "embassy-executor" | ||
| 188 | version = "0.9.1" | ||
| 189 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 190 | checksum = "06070468370195e0e86f241c8e5004356d696590a678d47d6676795b2e439c6b" | ||
| 191 | dependencies = [ | ||
| 192 | "cortex-m", | ||
| 193 | "critical-section", | ||
| 194 | "document-features", | ||
| 195 | "embassy-executor-macros", | ||
| 196 | "embassy-executor-timer-queue", | ||
| 197 | ] | ||
| 198 | |||
| 199 | [[package]] | ||
| 200 | name = "embassy-executor-macros" | ||
| 201 | version = "0.7.0" | ||
| 202 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 203 | checksum = "dfdddc3a04226828316bf31393b6903ee162238576b1584ee2669af215d55472" | ||
| 204 | dependencies = [ | ||
| 205 | "darling", | ||
| 206 | "proc-macro2", | ||
| 207 | "quote", | ||
| 208 | "syn", | ||
| 209 | ] | ||
| 210 | |||
| 211 | [[package]] | ||
| 212 | name = "embassy-executor-timer-queue" | ||
| 213 | version = "0.1.0" | ||
| 214 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 215 | checksum = "2fc328bf943af66b80b98755db9106bf7e7471b0cf47dc8559cd9a6be504cc9c" | ||
| 216 | |||
| 217 | [[package]] | ||
| 218 | name = "embassy-futures" | ||
| 219 | version = "0.1.2" | ||
| 220 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 221 | checksum = "dc2d050bdc5c21e0862a89256ed8029ae6c290a93aecefc73084b3002cdebb01" | ||
| 222 | |||
| 223 | [[package]] | ||
| 224 | name = "embassy-hal-internal" | ||
| 225 | version = "0.3.0" | ||
| 226 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 227 | checksum = "95285007a91b619dc9f26ea8f55452aa6c60f7115a4edc05085cd2bd3127cd7a" | ||
| 228 | dependencies = [ | ||
| 229 | "cortex-m", | ||
| 230 | "critical-section", | ||
| 231 | "num-traits", | ||
| 232 | ] | ||
| 233 | |||
| 234 | [[package]] | ||
| 235 | name = "embassy-mcxa276" | ||
| 236 | version = "0.1.0" | ||
| 237 | dependencies = [ | ||
| 238 | "cortex-m", | ||
| 239 | "cortex-m-rt", | ||
| 240 | "critical-section", | ||
| 241 | "defmt", | ||
| 242 | "defmt-rtt", | ||
| 243 | "embassy-embedded-hal", | ||
| 244 | "embassy-executor", | ||
| 245 | "embassy-hal-internal", | ||
| 246 | "embassy-sync", | ||
| 247 | "embassy-time", | ||
| 248 | "embassy-time-driver", | ||
| 249 | "embedded-hal 0.2.7", | ||
| 250 | "embedded-hal 1.0.0", | ||
| 251 | "embedded-hal-async", | ||
| 252 | "embedded-hal-nb", | ||
| 253 | "embedded-io", | ||
| 254 | "embedded-io-async", | ||
| 255 | "heapless", | ||
| 256 | "mcxa-pac", | ||
| 257 | "nb 1.1.0", | ||
| 258 | "panic-probe", | ||
| 259 | "paste", | ||
| 260 | ] | ||
| 261 | |||
| 262 | [[package]] | ||
| 263 | name = "embassy-sync" | ||
| 264 | version = "0.7.2" | ||
| 265 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 266 | checksum = "73974a3edbd0bd286759b3d483540f0ebef705919a5f56f4fc7709066f71689b" | ||
| 267 | dependencies = [ | ||
| 268 | "cfg-if", | ||
| 269 | "critical-section", | ||
| 270 | "embedded-io-async", | ||
| 271 | "futures-core", | ||
| 272 | "futures-sink", | ||
| 273 | "heapless", | ||
| 274 | ] | ||
| 275 | |||
| 276 | [[package]] | ||
| 277 | name = "embassy-time" | ||
| 278 | version = "0.5.0" | ||
| 279 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 280 | checksum = "f4fa65b9284d974dad7a23bb72835c4ec85c0b540d86af7fc4098c88cff51d65" | ||
| 281 | dependencies = [ | ||
| 282 | "cfg-if", | ||
| 283 | "critical-section", | ||
| 284 | "document-features", | ||
| 285 | "embassy-time-driver", | ||
| 286 | "embedded-hal 0.2.7", | ||
| 287 | "embedded-hal 1.0.0", | ||
| 288 | "embedded-hal-async", | ||
| 289 | "futures-core", | ||
| 290 | ] | ||
| 291 | |||
| 292 | [[package]] | ||
| 293 | name = "embassy-time-driver" | ||
| 294 | version = "0.2.1" | ||
| 295 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 296 | checksum = "a0a244c7dc22c8d0289379c8d8830cae06bb93d8f990194d0de5efb3b5ae7ba6" | ||
| 297 | dependencies = [ | ||
| 298 | "document-features", | ||
| 299 | ] | ||
| 300 | |||
| 301 | [[package]] | ||
| 302 | name = "embedded-hal" | ||
| 303 | version = "0.2.7" | ||
| 304 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 305 | checksum = "35949884794ad573cf46071e41c9b60efb0cb311e3ca01f7af807af1debc66ff" | ||
| 306 | dependencies = [ | ||
| 307 | "nb 0.1.3", | ||
| 308 | "void", | ||
| 309 | ] | ||
| 310 | |||
| 311 | [[package]] | ||
| 312 | name = "embedded-hal" | ||
| 313 | version = "1.0.0" | ||
| 314 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 315 | checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89" | ||
| 316 | |||
| 317 | [[package]] | ||
| 318 | name = "embedded-hal-async" | ||
| 319 | version = "1.0.0" | ||
| 320 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 321 | checksum = "0c4c685bbef7fe13c3c6dd4da26841ed3980ef33e841cddfa15ce8a8fb3f1884" | ||
| 322 | dependencies = [ | ||
| 323 | "embedded-hal 1.0.0", | ||
| 324 | ] | ||
| 325 | |||
| 326 | [[package]] | ||
| 327 | name = "embedded-hal-nb" | ||
| 328 | version = "1.0.0" | ||
| 329 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 330 | checksum = "fba4268c14288c828995299e59b12babdbe170f6c6d73731af1b4648142e8605" | ||
| 331 | dependencies = [ | ||
| 332 | "embedded-hal 1.0.0", | ||
| 333 | "nb 1.1.0", | ||
| 334 | ] | ||
| 335 | |||
| 336 | [[package]] | ||
| 337 | name = "embedded-io" | ||
| 338 | version = "0.6.1" | ||
| 339 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 340 | checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" | ||
| 341 | |||
| 342 | [[package]] | ||
| 343 | name = "embedded-io-async" | ||
| 344 | version = "0.6.1" | ||
| 345 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 346 | checksum = "3ff09972d4073aa8c299395be75161d582e7629cd663171d62af73c8d50dba3f" | ||
| 347 | dependencies = [ | ||
| 348 | "embedded-io", | ||
| 349 | ] | ||
| 350 | |||
| 351 | [[package]] | ||
| 352 | name = "embedded-storage" | ||
| 353 | version = "0.3.1" | ||
| 354 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 355 | checksum = "a21dea9854beb860f3062d10228ce9b976da520a73474aed3171ec276bc0c032" | ||
| 356 | |||
| 357 | [[package]] | ||
| 358 | name = "embedded-storage-async" | ||
| 359 | version = "0.4.1" | ||
| 360 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 361 | checksum = "1763775e2323b7d5f0aa6090657f5e21cfa02ede71f5dc40eead06d64dcd15cc" | ||
| 362 | dependencies = [ | ||
| 363 | "embedded-storage", | ||
| 364 | ] | ||
| 365 | |||
| 366 | [[package]] | ||
| 367 | name = "fnv" | ||
| 368 | version = "1.0.7" | ||
| 369 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 370 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | ||
| 371 | |||
| 372 | [[package]] | ||
| 373 | name = "futures-core" | ||
| 374 | version = "0.3.31" | ||
| 375 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 376 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" | ||
| 377 | |||
| 378 | [[package]] | ||
| 379 | name = "futures-sink" | ||
| 380 | version = "0.3.31" | ||
| 381 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 382 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" | ||
| 383 | |||
| 384 | [[package]] | ||
| 385 | name = "hash32" | ||
| 386 | version = "0.3.1" | ||
| 387 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 388 | checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" | ||
| 389 | dependencies = [ | ||
| 390 | "byteorder", | ||
| 391 | ] | ||
| 392 | |||
| 393 | [[package]] | ||
| 394 | name = "heapless" | ||
| 395 | version = "0.8.0" | ||
| 396 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 397 | checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" | ||
| 398 | dependencies = [ | ||
| 399 | "hash32", | ||
| 400 | "stable_deref_trait", | ||
| 401 | ] | ||
| 402 | |||
| 403 | [[package]] | ||
| 404 | name = "ident_case" | ||
| 405 | version = "1.0.1" | ||
| 406 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 407 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" | ||
| 408 | |||
| 409 | [[package]] | ||
| 410 | name = "litrs" | ||
| 411 | version = "1.0.0" | ||
| 412 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 413 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" | ||
| 414 | |||
| 415 | [[package]] | ||
| 416 | name = "mcxa-pac" | ||
| 417 | version = "0.1.0" | ||
| 418 | source = "git+https://github.com/OpenDevicePartnership/mcxa-pac?rev=3ab4c868f75a9240bb8fdce24982d34f2273aabf#3ab4c868f75a9240bb8fdce24982d34f2273aabf" | ||
| 419 | dependencies = [ | ||
| 420 | "cortex-m", | ||
| 421 | "cortex-m-rt", | ||
| 422 | "vcell", | ||
| 423 | ] | ||
| 424 | |||
| 425 | [[package]] | ||
| 426 | name = "nb" | ||
| 427 | version = "0.1.3" | ||
| 428 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 429 | checksum = "801d31da0513b6ec5214e9bf433a77966320625a37860f910be265be6e18d06f" | ||
| 430 | dependencies = [ | ||
| 431 | "nb 1.1.0", | ||
| 432 | ] | ||
| 433 | |||
| 434 | [[package]] | ||
| 435 | name = "nb" | ||
| 436 | version = "1.1.0" | ||
| 437 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 438 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" | ||
| 439 | |||
| 440 | [[package]] | ||
| 441 | name = "num-traits" | ||
| 442 | version = "0.2.19" | ||
| 443 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 444 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" | ||
| 445 | dependencies = [ | ||
| 446 | "autocfg", | ||
| 447 | ] | ||
| 448 | |||
| 449 | [[package]] | ||
| 450 | name = "panic-probe" | ||
| 451 | version = "1.0.0" | ||
| 452 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 453 | checksum = "fd402d00b0fb94c5aee000029204a46884b1262e0c443f166d86d2c0747e1a1a" | ||
| 454 | dependencies = [ | ||
| 455 | "cortex-m", | ||
| 456 | "defmt", | ||
| 457 | ] | ||
| 458 | |||
| 459 | [[package]] | ||
| 460 | name = "paste" | ||
| 461 | version = "1.0.15" | ||
| 462 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 463 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" | ||
| 464 | |||
| 465 | [[package]] | ||
| 466 | name = "proc-macro-error-attr2" | ||
| 467 | version = "2.0.0" | ||
| 468 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 469 | checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" | ||
| 470 | dependencies = [ | ||
| 471 | "proc-macro2", | ||
| 472 | "quote", | ||
| 473 | ] | ||
| 474 | |||
| 475 | [[package]] | ||
| 476 | name = "proc-macro-error2" | ||
| 477 | version = "2.0.1" | ||
| 478 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 479 | checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" | ||
| 480 | dependencies = [ | ||
| 481 | "proc-macro-error-attr2", | ||
| 482 | "proc-macro2", | ||
| 483 | "quote", | ||
| 484 | "syn", | ||
| 485 | ] | ||
| 486 | |||
| 487 | [[package]] | ||
| 488 | name = "proc-macro2" | ||
| 489 | version = "1.0.103" | ||
| 490 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 491 | checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" | ||
| 492 | dependencies = [ | ||
| 493 | "unicode-ident", | ||
| 494 | ] | ||
| 495 | |||
| 496 | [[package]] | ||
| 497 | name = "quote" | ||
| 498 | version = "1.0.42" | ||
| 499 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 500 | checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" | ||
| 501 | dependencies = [ | ||
| 502 | "proc-macro2", | ||
| 503 | ] | ||
| 504 | |||
| 505 | [[package]] | ||
| 506 | name = "rustc_version" | ||
| 507 | version = "0.2.3" | ||
| 508 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 509 | checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
| 510 | dependencies = [ | ||
| 511 | "semver", | ||
| 512 | ] | ||
| 513 | |||
| 514 | [[package]] | ||
| 515 | name = "semver" | ||
| 516 | version = "0.9.0" | ||
| 517 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 518 | checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
| 519 | dependencies = [ | ||
| 520 | "semver-parser", | ||
| 521 | ] | ||
| 522 | |||
| 523 | [[package]] | ||
| 524 | name = "semver-parser" | ||
| 525 | version = "0.7.0" | ||
| 526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 527 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
| 528 | |||
| 529 | [[package]] | ||
| 530 | name = "stable_deref_trait" | ||
| 531 | version = "1.2.1" | ||
| 532 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 533 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" | ||
| 534 | |||
| 535 | [[package]] | ||
| 536 | name = "strsim" | ||
| 537 | version = "0.11.1" | ||
| 538 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 539 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | ||
| 540 | |||
| 541 | [[package]] | ||
| 542 | name = "syn" | ||
| 543 | version = "2.0.109" | ||
| 544 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 545 | checksum = "2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f" | ||
| 546 | dependencies = [ | ||
| 547 | "proc-macro2", | ||
| 548 | "quote", | ||
| 549 | "unicode-ident", | ||
| 550 | ] | ||
| 551 | |||
| 552 | [[package]] | ||
| 553 | name = "thiserror" | ||
| 554 | version = "2.0.17" | ||
| 555 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 556 | checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" | ||
| 557 | dependencies = [ | ||
| 558 | "thiserror-impl", | ||
| 559 | ] | ||
| 560 | |||
| 561 | [[package]] | ||
| 562 | name = "thiserror-impl" | ||
| 563 | version = "2.0.17" | ||
| 564 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 565 | checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" | ||
| 566 | dependencies = [ | ||
| 567 | "proc-macro2", | ||
| 568 | "quote", | ||
| 569 | "syn", | ||
| 570 | ] | ||
| 571 | |||
| 572 | [[package]] | ||
| 573 | name = "unicode-ident" | ||
| 574 | version = "1.0.22" | ||
| 575 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 576 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" | ||
| 577 | |||
| 578 | [[package]] | ||
| 579 | name = "vcell" | ||
| 580 | version = "0.1.3" | ||
| 581 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 582 | checksum = "77439c1b53d2303b20d9459b1ade71a83c716e3f9c34f3228c00e6f185d6c002" | ||
| 583 | |||
| 584 | [[package]] | ||
| 585 | name = "void" | ||
| 586 | version = "1.0.2" | ||
| 587 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 588 | checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" | ||
| 589 | |||
| 590 | [[package]] | ||
| 591 | name = "volatile-register" | ||
| 592 | version = "0.2.2" | ||
| 593 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 594 | checksum = "de437e2a6208b014ab52972a27e59b33fa2920d3e00fe05026167a1c509d19cc" | ||
| 595 | dependencies = [ | ||
| 596 | "vcell", | ||
| 597 | ] | ||
