diff options
Diffstat (limited to 'embassy-mcxa/Cargo.lock')
| -rw-r--r-- | embassy-mcxa/Cargo.lock | 918 |
1 files changed, 918 insertions, 0 deletions
diff --git a/embassy-mcxa/Cargo.lock b/embassy-mcxa/Cargo.lock new file mode 100644 index 000000000..747a69c08 --- /dev/null +++ b/embassy-mcxa/Cargo.lock | |||
| @@ -0,0 +1,918 @@ | |||
| 1 | # This file is automatically @generated by Cargo. | ||
| 2 | # It is not intended for manual editing. | ||
| 3 | version = 4 | ||
| 4 | |||
| 5 | [[package]] | ||
| 6 | name = "aho-corasick" | ||
| 7 | version = "1.1.4" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" | ||
| 10 | dependencies = [ | ||
| 11 | "memchr", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [[package]] | ||
| 15 | name = "autocfg" | ||
| 16 | version = "1.5.0" | ||
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 18 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | ||
| 19 | |||
| 20 | [[package]] | ||
| 21 | name = "bare-metal" | ||
| 22 | version = "0.2.5" | ||
| 23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 24 | checksum = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3" | ||
| 25 | dependencies = [ | ||
| 26 | "rustc_version", | ||
| 27 | ] | ||
| 28 | |||
| 29 | [[package]] | ||
| 30 | name = "bitfield" | ||
| 31 | version = "0.13.2" | ||
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 33 | checksum = "46afbd2983a5d5a7bd740ccb198caf5b82f45c40c09c0eed36052d91cb92e719" | ||
| 34 | |||
| 35 | [[package]] | ||
| 36 | name = "bitflags" | ||
| 37 | version = "1.3.2" | ||
| 38 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 39 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | ||
| 40 | |||
| 41 | [[package]] | ||
| 42 | name = "byteorder" | ||
| 43 | version = "1.5.0" | ||
| 44 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 45 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | ||
| 46 | |||
| 47 | [[package]] | ||
| 48 | name = "cc" | ||
| 49 | version = "1.2.47" | ||
| 50 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 51 | checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" | ||
| 52 | dependencies = [ | ||
| 53 | "find-msvc-tools", | ||
| 54 | "shlex", | ||
| 55 | ] | ||
| 56 | |||
| 57 | [[package]] | ||
| 58 | name = "cfg-if" | ||
| 59 | version = "1.0.4" | ||
| 60 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 61 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" | ||
| 62 | |||
| 63 | [[package]] | ||
| 64 | name = "cordyceps" | ||
| 65 | version = "0.3.4" | ||
| 66 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 67 | checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" | ||
| 68 | dependencies = [ | ||
| 69 | "loom", | ||
| 70 | "tracing", | ||
| 71 | ] | ||
| 72 | |||
| 73 | [[package]] | ||
| 74 | name = "cortex-m" | ||
| 75 | version = "0.7.7" | ||
| 76 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 77 | checksum = "8ec610d8f49840a5b376c69663b6369e71f4b34484b9b2eb29fb918d92516cb9" | ||
| 78 | dependencies = [ | ||
| 79 | "bare-metal", | ||
| 80 | "bitfield", | ||
| 81 | "critical-section", | ||
| 82 | "embedded-hal 0.2.7", | ||
| 83 | "volatile-register", | ||
| 84 | ] | ||
| 85 | |||
| 86 | [[package]] | ||
| 87 | name = "cortex-m-rt" | ||
| 88 | version = "0.7.5" | ||
| 89 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 90 | checksum = "801d4dec46b34c299ccf6b036717ae0fce602faa4f4fe816d9013b9a7c9f5ba6" | ||
| 91 | dependencies = [ | ||
| 92 | "cortex-m-rt-macros", | ||
| 93 | ] | ||
| 94 | |||
| 95 | [[package]] | ||
| 96 | name = "cortex-m-rt-macros" | ||
| 97 | version = "0.7.5" | ||
| 98 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 99 | checksum = "e37549a379a9e0e6e576fd208ee60394ccb8be963889eebba3ffe0980364f472" | ||
| 100 | dependencies = [ | ||
| 101 | "proc-macro2", | ||
| 102 | "quote", | ||
| 103 | "syn", | ||
| 104 | ] | ||
| 105 | |||
| 106 | [[package]] | ||
| 107 | name = "critical-section" | ||
| 108 | version = "1.2.0" | ||
| 109 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 110 | checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" | ||
| 111 | |||
| 112 | [[package]] | ||
| 113 | name = "defmt" | ||
| 114 | version = "1.0.1" | ||
| 115 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 116 | checksum = "548d977b6da32fa1d1fda2876453da1e7df63ad0304c8b3dae4dbe7b96f39b78" | ||
| 117 | dependencies = [ | ||
| 118 | "bitflags", | ||
| 119 | "defmt-macros", | ||
| 120 | ] | ||
| 121 | |||
| 122 | [[package]] | ||
| 123 | name = "defmt-macros" | ||
| 124 | version = "1.0.1" | ||
| 125 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 126 | checksum = "3d4fc12a85bcf441cfe44344c4b72d58493178ce635338a3f3b78943aceb258e" | ||
| 127 | dependencies = [ | ||
| 128 | "defmt-parser", | ||
| 129 | "proc-macro-error2", | ||
| 130 | "proc-macro2", | ||
| 131 | "quote", | ||
| 132 | "syn", | ||
| 133 | ] | ||
| 134 | |||
| 135 | [[package]] | ||
| 136 | name = "defmt-parser" | ||
| 137 | version = "1.0.0" | ||
| 138 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 139 | checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" | ||
| 140 | dependencies = [ | ||
| 141 | "thiserror", | ||
| 142 | ] | ||
| 143 | |||
| 144 | [[package]] | ||
| 145 | name = "document-features" | ||
| 146 | version = "0.2.12" | ||
| 147 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 148 | checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61" | ||
| 149 | dependencies = [ | ||
| 150 | "litrs", | ||
| 151 | ] | ||
| 152 | |||
| 153 | [[package]] | ||
| 154 | name = "embassy-embedded-hal" | ||
| 155 | version = "0.5.0" | ||
| 156 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 157 | checksum = "554e3e840696f54b4c9afcf28a0f24da431c927f4151040020416e7393d6d0d8" | ||
| 158 | dependencies = [ | ||
| 159 | "embassy-futures", | ||
| 160 | "embassy-hal-internal", | ||
| 161 | "embassy-sync", | ||
| 162 | "embedded-hal 0.2.7", | ||
| 163 | "embedded-hal 1.0.0", | ||
| 164 | "embedded-hal-async", | ||
| 165 | "embedded-storage", | ||
| 166 | "embedded-storage-async", | ||
| 167 | "nb 1.1.0", | ||
| 168 | ] | ||
| 169 | |||
| 170 | [[package]] | ||
| 171 | name = "embassy-futures" | ||
| 172 | version = "0.1.2" | ||
| 173 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 174 | checksum = "dc2d050bdc5c21e0862a89256ed8029ae6c290a93aecefc73084b3002cdebb01" | ||
| 175 | |||
| 176 | [[package]] | ||
| 177 | name = "embassy-hal-internal" | ||
| 178 | version = "0.3.0" | ||
| 179 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 180 | checksum = "95285007a91b619dc9f26ea8f55452aa6c60f7115a4edc05085cd2bd3127cd7a" | ||
| 181 | dependencies = [ | ||
| 182 | "cortex-m", | ||
| 183 | "critical-section", | ||
| 184 | "num-traits", | ||
| 185 | ] | ||
| 186 | |||
| 187 | [[package]] | ||
| 188 | name = "embassy-mcxa" | ||
| 189 | version = "0.1.0" | ||
| 190 | dependencies = [ | ||
| 191 | "cortex-m", | ||
| 192 | "cortex-m-rt", | ||
| 193 | "critical-section", | ||
| 194 | "defmt", | ||
| 195 | "embassy-embedded-hal", | ||
| 196 | "embassy-hal-internal", | ||
| 197 | "embassy-sync", | ||
| 198 | "embassy-time", | ||
| 199 | "embassy-time-driver", | ||
| 200 | "embedded-hal 0.2.7", | ||
| 201 | "embedded-hal 1.0.0", | ||
| 202 | "embedded-hal-async", | ||
| 203 | "embedded-hal-nb", | ||
| 204 | "embedded-io", | ||
| 205 | "embedded-io-async", | ||
| 206 | "heapless", | ||
| 207 | "maitake-sync", | ||
| 208 | "mcxa-pac", | ||
| 209 | "nb 1.1.0", | ||
| 210 | "paste", | ||
| 211 | ] | ||
| 212 | |||
| 213 | [[package]] | ||
| 214 | name = "embassy-sync" | ||
| 215 | version = "0.7.2" | ||
| 216 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 217 | checksum = "73974a3edbd0bd286759b3d483540f0ebef705919a5f56f4fc7709066f71689b" | ||
| 218 | dependencies = [ | ||
| 219 | "cfg-if", | ||
| 220 | "critical-section", | ||
| 221 | "embedded-io-async", | ||
| 222 | "futures-core", | ||
| 223 | "futures-sink", | ||
| 224 | "heapless", | ||
| 225 | ] | ||
| 226 | |||
| 227 | [[package]] | ||
| 228 | name = "embassy-time" | ||
| 229 | version = "0.5.0" | ||
| 230 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 231 | checksum = "f4fa65b9284d974dad7a23bb72835c4ec85c0b540d86af7fc4098c88cff51d65" | ||
| 232 | dependencies = [ | ||
| 233 | "cfg-if", | ||
| 234 | "critical-section", | ||
| 235 | "document-features", | ||
| 236 | "embassy-time-driver", | ||
| 237 | "embedded-hal 0.2.7", | ||
| 238 | "embedded-hal 1.0.0", | ||
| 239 | "embedded-hal-async", | ||
| 240 | "futures-core", | ||
| 241 | ] | ||
| 242 | |||
| 243 | [[package]] | ||
| 244 | name = "embassy-time-driver" | ||
| 245 | version = "0.2.1" | ||
| 246 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 247 | checksum = "a0a244c7dc22c8d0289379c8d8830cae06bb93d8f990194d0de5efb3b5ae7ba6" | ||
| 248 | dependencies = [ | ||
| 249 | "document-features", | ||
| 250 | ] | ||
| 251 | |||
| 252 | [[package]] | ||
| 253 | name = "embedded-hal" | ||
| 254 | version = "0.2.7" | ||
| 255 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 256 | checksum = "35949884794ad573cf46071e41c9b60efb0cb311e3ca01f7af807af1debc66ff" | ||
| 257 | dependencies = [ | ||
| 258 | "nb 0.1.3", | ||
| 259 | "void", | ||
| 260 | ] | ||
| 261 | |||
| 262 | [[package]] | ||
| 263 | name = "embedded-hal" | ||
| 264 | version = "1.0.0" | ||
| 265 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 266 | checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89" | ||
| 267 | |||
| 268 | [[package]] | ||
| 269 | name = "embedded-hal-async" | ||
| 270 | version = "1.0.0" | ||
| 271 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 272 | checksum = "0c4c685bbef7fe13c3c6dd4da26841ed3980ef33e841cddfa15ce8a8fb3f1884" | ||
| 273 | dependencies = [ | ||
| 274 | "embedded-hal 1.0.0", | ||
| 275 | ] | ||
| 276 | |||
| 277 | [[package]] | ||
| 278 | name = "embedded-hal-nb" | ||
| 279 | version = "1.0.0" | ||
| 280 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 281 | checksum = "fba4268c14288c828995299e59b12babdbe170f6c6d73731af1b4648142e8605" | ||
| 282 | dependencies = [ | ||
| 283 | "embedded-hal 1.0.0", | ||
| 284 | "nb 1.1.0", | ||
| 285 | ] | ||
| 286 | |||
| 287 | [[package]] | ||
| 288 | name = "embedded-io" | ||
| 289 | version = "0.6.1" | ||
| 290 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 291 | checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" | ||
| 292 | |||
| 293 | [[package]] | ||
| 294 | name = "embedded-io-async" | ||
| 295 | version = "0.6.1" | ||
| 296 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 297 | checksum = "3ff09972d4073aa8c299395be75161d582e7629cd663171d62af73c8d50dba3f" | ||
| 298 | dependencies = [ | ||
| 299 | "embedded-io", | ||
| 300 | ] | ||
| 301 | |||
| 302 | [[package]] | ||
| 303 | name = "embedded-storage" | ||
| 304 | version = "0.3.1" | ||
| 305 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 306 | checksum = "a21dea9854beb860f3062d10228ce9b976da520a73474aed3171ec276bc0c032" | ||
| 307 | |||
| 308 | [[package]] | ||
| 309 | name = "embedded-storage-async" | ||
| 310 | version = "0.4.1" | ||
| 311 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 312 | checksum = "1763775e2323b7d5f0aa6090657f5e21cfa02ede71f5dc40eead06d64dcd15cc" | ||
| 313 | dependencies = [ | ||
| 314 | "embedded-storage", | ||
| 315 | ] | ||
| 316 | |||
| 317 | [[package]] | ||
| 318 | name = "find-msvc-tools" | ||
| 319 | version = "0.1.5" | ||
| 320 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 321 | checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" | ||
| 322 | |||
| 323 | [[package]] | ||
| 324 | name = "futures-core" | ||
| 325 | version = "0.3.31" | ||
| 326 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 327 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" | ||
| 328 | |||
| 329 | [[package]] | ||
| 330 | name = "futures-sink" | ||
| 331 | version = "0.3.31" | ||
| 332 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 333 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" | ||
| 334 | |||
| 335 | [[package]] | ||
| 336 | name = "generator" | ||
| 337 | version = "0.8.7" | ||
| 338 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 339 | checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" | ||
| 340 | dependencies = [ | ||
| 341 | "cc", | ||
| 342 | "cfg-if", | ||
| 343 | "libc", | ||
| 344 | "log", | ||
| 345 | "rustversion", | ||
| 346 | "windows", | ||
| 347 | ] | ||
| 348 | |||
| 349 | [[package]] | ||
| 350 | name = "hash32" | ||
| 351 | version = "0.3.1" | ||
| 352 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 353 | checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" | ||
| 354 | dependencies = [ | ||
| 355 | "byteorder", | ||
| 356 | ] | ||
| 357 | |||
| 358 | [[package]] | ||
| 359 | name = "heapless" | ||
| 360 | version = "0.8.0" | ||
| 361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 362 | checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" | ||
| 363 | dependencies = [ | ||
| 364 | "hash32", | ||
| 365 | "stable_deref_trait", | ||
| 366 | ] | ||
| 367 | |||
| 368 | [[package]] | ||
| 369 | name = "lazy_static" | ||
| 370 | version = "1.5.0" | ||
| 371 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 372 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" | ||
| 373 | |||
| 374 | [[package]] | ||
| 375 | name = "libc" | ||
| 376 | version = "0.2.177" | ||
| 377 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 378 | checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" | ||
| 379 | |||
| 380 | [[package]] | ||
| 381 | name = "litrs" | ||
| 382 | version = "1.0.0" | ||
| 383 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 384 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" | ||
| 385 | |||
| 386 | [[package]] | ||
| 387 | name = "log" | ||
| 388 | version = "0.4.28" | ||
| 389 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 390 | checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" | ||
| 391 | |||
| 392 | [[package]] | ||
| 393 | name = "loom" | ||
| 394 | version = "0.7.2" | ||
| 395 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 396 | checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" | ||
| 397 | dependencies = [ | ||
| 398 | "cfg-if", | ||
| 399 | "generator", | ||
| 400 | "scoped-tls", | ||
| 401 | "tracing", | ||
| 402 | "tracing-subscriber", | ||
| 403 | ] | ||
| 404 | |||
| 405 | [[package]] | ||
| 406 | name = "maitake-sync" | ||
| 407 | version = "0.2.2" | ||
| 408 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 409 | checksum = "748f86d9befd480b602c3bebc9ef30dbf2f3dfc8acc4a73d07b90f0117e6de3f" | ||
| 410 | dependencies = [ | ||
| 411 | "cordyceps", | ||
| 412 | "critical-section", | ||
| 413 | "loom", | ||
| 414 | "mutex-traits", | ||
| 415 | "mycelium-bitfield", | ||
| 416 | "pin-project", | ||
| 417 | "portable-atomic", | ||
| 418 | "tracing", | ||
| 419 | ] | ||
| 420 | |||
| 421 | [[package]] | ||
| 422 | name = "matchers" | ||
| 423 | version = "0.2.0" | ||
| 424 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 425 | checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" | ||
| 426 | dependencies = [ | ||
| 427 | "regex-automata", | ||
| 428 | ] | ||
| 429 | |||
| 430 | [[package]] | ||
| 431 | name = "mcxa-pac" | ||
| 432 | version = "0.1.0" | ||
| 433 | source = "git+https://github.com/OpenDevicePartnership/mcxa-pac#e18dfb52500ca77b8d8326662b966a80251182ca" | ||
| 434 | dependencies = [ | ||
| 435 | "cortex-m", | ||
| 436 | "cortex-m-rt", | ||
| 437 | "critical-section", | ||
| 438 | "defmt", | ||
| 439 | "vcell", | ||
| 440 | ] | ||
| 441 | |||
| 442 | [[package]] | ||
| 443 | name = "memchr" | ||
| 444 | version = "2.7.6" | ||
| 445 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 446 | checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" | ||
| 447 | |||
| 448 | [[package]] | ||
| 449 | name = "mutex-traits" | ||
| 450 | version = "1.0.1" | ||
| 451 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 452 | checksum = "3929f2b5633d29cf7b6624992e5f3c1e9334f1193423e12d17be4faf678cde3f" | ||
| 453 | |||
| 454 | [[package]] | ||
| 455 | name = "mycelium-bitfield" | ||
| 456 | version = "0.1.5" | ||
| 457 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 458 | checksum = "24e0cc5e2c585acbd15c5ce911dff71e1f4d5313f43345873311c4f5efd741cc" | ||
| 459 | |||
| 460 | [[package]] | ||
| 461 | name = "nb" | ||
| 462 | version = "0.1.3" | ||
| 463 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 464 | checksum = "801d31da0513b6ec5214e9bf433a77966320625a37860f910be265be6e18d06f" | ||
| 465 | dependencies = [ | ||
| 466 | "nb 1.1.0", | ||
| 467 | ] | ||
| 468 | |||
| 469 | [[package]] | ||
| 470 | name = "nb" | ||
| 471 | version = "1.1.0" | ||
| 472 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 473 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" | ||
| 474 | |||
| 475 | [[package]] | ||
| 476 | name = "nu-ansi-term" | ||
| 477 | version = "0.50.3" | ||
| 478 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 479 | checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" | ||
| 480 | dependencies = [ | ||
| 481 | "windows-sys", | ||
| 482 | ] | ||
| 483 | |||
| 484 | [[package]] | ||
| 485 | name = "num-traits" | ||
| 486 | version = "0.2.19" | ||
| 487 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 488 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" | ||
| 489 | dependencies = [ | ||
| 490 | "autocfg", | ||
| 491 | ] | ||
| 492 | |||
| 493 | [[package]] | ||
| 494 | name = "once_cell" | ||
| 495 | version = "1.21.3" | ||
| 496 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 497 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" | ||
| 498 | |||
| 499 | [[package]] | ||
| 500 | name = "paste" | ||
| 501 | version = "1.0.15" | ||
| 502 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 503 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" | ||
| 504 | |||
| 505 | [[package]] | ||
| 506 | name = "pin-project" | ||
| 507 | version = "1.1.10" | ||
| 508 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 509 | checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" | ||
| 510 | dependencies = [ | ||
| 511 | "pin-project-internal", | ||
| 512 | ] | ||
| 513 | |||
| 514 | [[package]] | ||
| 515 | name = "pin-project-internal" | ||
| 516 | version = "1.1.10" | ||
| 517 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 518 | checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" | ||
| 519 | dependencies = [ | ||
| 520 | "proc-macro2", | ||
| 521 | "quote", | ||
| 522 | "syn", | ||
| 523 | ] | ||
| 524 | |||
| 525 | [[package]] | ||
| 526 | name = "pin-project-lite" | ||
| 527 | version = "0.2.16" | ||
| 528 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 529 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" | ||
| 530 | |||
| 531 | [[package]] | ||
| 532 | name = "portable-atomic" | ||
| 533 | version = "1.11.1" | ||
| 534 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 535 | checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" | ||
| 536 | dependencies = [ | ||
| 537 | "critical-section", | ||
| 538 | ] | ||
| 539 | |||
| 540 | [[package]] | ||
| 541 | name = "proc-macro-error-attr2" | ||
| 542 | version = "2.0.0" | ||
| 543 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 544 | checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" | ||
| 545 | dependencies = [ | ||
| 546 | "proc-macro2", | ||
| 547 | "quote", | ||
| 548 | ] | ||
| 549 | |||
| 550 | [[package]] | ||
| 551 | name = "proc-macro-error2" | ||
| 552 | version = "2.0.1" | ||
| 553 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 554 | checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" | ||
| 555 | dependencies = [ | ||
| 556 | "proc-macro-error-attr2", | ||
| 557 | "proc-macro2", | ||
| 558 | "quote", | ||
| 559 | "syn", | ||
| 560 | ] | ||
| 561 | |||
| 562 | [[package]] | ||
| 563 | name = "proc-macro2" | ||
| 564 | version = "1.0.103" | ||
| 565 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 566 | checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" | ||
| 567 | dependencies = [ | ||
| 568 | "unicode-ident", | ||
| 569 | ] | ||
| 570 | |||
| 571 | [[package]] | ||
| 572 | name = "quote" | ||
| 573 | version = "1.0.42" | ||
| 574 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 575 | checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" | ||
| 576 | dependencies = [ | ||
| 577 | "proc-macro2", | ||
| 578 | ] | ||
| 579 | |||
| 580 | [[package]] | ||
| 581 | name = "regex-automata" | ||
| 582 | version = "0.4.13" | ||
| 583 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 584 | checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" | ||
| 585 | dependencies = [ | ||
| 586 | "aho-corasick", | ||
| 587 | "memchr", | ||
| 588 | "regex-syntax", | ||
| 589 | ] | ||
| 590 | |||
| 591 | [[package]] | ||
| 592 | name = "regex-syntax" | ||
| 593 | version = "0.8.8" | ||
| 594 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 595 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" | ||
| 596 | |||
| 597 | [[package]] | ||
| 598 | name = "rustc_version" | ||
| 599 | version = "0.2.3" | ||
| 600 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 601 | checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
| 602 | dependencies = [ | ||
| 603 | "semver", | ||
| 604 | ] | ||
| 605 | |||
| 606 | [[package]] | ||
| 607 | name = "rustversion" | ||
| 608 | version = "1.0.22" | ||
| 609 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 610 | checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" | ||
| 611 | |||
| 612 | [[package]] | ||
| 613 | name = "scoped-tls" | ||
| 614 | version = "1.0.1" | ||
| 615 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 616 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" | ||
| 617 | |||
| 618 | [[package]] | ||
| 619 | name = "semver" | ||
| 620 | version = "0.9.0" | ||
| 621 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 622 | checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
| 623 | dependencies = [ | ||
| 624 | "semver-parser", | ||
| 625 | ] | ||
| 626 | |||
| 627 | [[package]] | ||
| 628 | name = "semver-parser" | ||
| 629 | version = "0.7.0" | ||
| 630 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 631 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
| 632 | |||
| 633 | [[package]] | ||
| 634 | name = "sharded-slab" | ||
| 635 | version = "0.1.7" | ||
| 636 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 637 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" | ||
| 638 | dependencies = [ | ||
| 639 | "lazy_static", | ||
| 640 | ] | ||
| 641 | |||
| 642 | [[package]] | ||
| 643 | name = "shlex" | ||
| 644 | version = "1.3.0" | ||
| 645 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 646 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | ||
| 647 | |||
| 648 | [[package]] | ||
| 649 | name = "smallvec" | ||
| 650 | version = "1.15.1" | ||
| 651 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 652 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" | ||
| 653 | |||
| 654 | [[package]] | ||
| 655 | name = "stable_deref_trait" | ||
| 656 | version = "1.2.1" | ||
| 657 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 658 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" | ||
| 659 | |||
| 660 | [[package]] | ||
| 661 | name = "syn" | ||
| 662 | version = "2.0.110" | ||
| 663 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 664 | checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" | ||
| 665 | dependencies = [ | ||
| 666 | "proc-macro2", | ||
| 667 | "quote", | ||
| 668 | "unicode-ident", | ||
| 669 | ] | ||
| 670 | |||
| 671 | [[package]] | ||
| 672 | name = "thiserror" | ||
| 673 | version = "2.0.17" | ||
| 674 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 675 | checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" | ||
| 676 | dependencies = [ | ||
| 677 | "thiserror-impl", | ||
| 678 | ] | ||
| 679 | |||
| 680 | [[package]] | ||
| 681 | name = "thiserror-impl" | ||
| 682 | version = "2.0.17" | ||
| 683 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 684 | checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" | ||
| 685 | dependencies = [ | ||
| 686 | "proc-macro2", | ||
| 687 | "quote", | ||
| 688 | "syn", | ||
| 689 | ] | ||
| 690 | |||
| 691 | [[package]] | ||
| 692 | name = "thread_local" | ||
| 693 | version = "1.1.9" | ||
| 694 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 695 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" | ||
| 696 | dependencies = [ | ||
| 697 | "cfg-if", | ||
| 698 | ] | ||
| 699 | |||
| 700 | [[package]] | ||
| 701 | name = "tracing" | ||
| 702 | version = "0.1.41" | ||
| 703 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 704 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" | ||
| 705 | dependencies = [ | ||
| 706 | "pin-project-lite", | ||
| 707 | "tracing-attributes", | ||
| 708 | "tracing-core", | ||
| 709 | ] | ||
| 710 | |||
| 711 | [[package]] | ||
| 712 | name = "tracing-attributes" | ||
| 713 | version = "0.1.30" | ||
| 714 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 715 | checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" | ||
| 716 | dependencies = [ | ||
| 717 | "proc-macro2", | ||
| 718 | "quote", | ||
| 719 | "syn", | ||
| 720 | ] | ||
| 721 | |||
| 722 | [[package]] | ||
| 723 | name = "tracing-core" | ||
| 724 | version = "0.1.34" | ||
| 725 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 726 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" | ||
| 727 | dependencies = [ | ||
| 728 | "once_cell", | ||
| 729 | "valuable", | ||
| 730 | ] | ||
| 731 | |||
| 732 | [[package]] | ||
| 733 | name = "tracing-log" | ||
| 734 | version = "0.2.0" | ||
| 735 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 736 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" | ||
| 737 | dependencies = [ | ||
| 738 | "log", | ||
| 739 | "once_cell", | ||
| 740 | "tracing-core", | ||
| 741 | ] | ||
| 742 | |||
| 743 | [[package]] | ||
| 744 | name = "tracing-subscriber" | ||
| 745 | version = "0.3.20" | ||
| 746 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 747 | checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" | ||
| 748 | dependencies = [ | ||
| 749 | "matchers", | ||
| 750 | "nu-ansi-term", | ||
| 751 | "once_cell", | ||
| 752 | "regex-automata", | ||
| 753 | "sharded-slab", | ||
| 754 | "smallvec", | ||
| 755 | "thread_local", | ||
| 756 | "tracing", | ||
| 757 | "tracing-core", | ||
| 758 | "tracing-log", | ||
| 759 | ] | ||
| 760 | |||
| 761 | [[package]] | ||
| 762 | name = "unicode-ident" | ||
| 763 | version = "1.0.22" | ||
| 764 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 765 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" | ||
| 766 | |||
| 767 | [[package]] | ||
| 768 | name = "valuable" | ||
| 769 | version = "0.1.1" | ||
| 770 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 771 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" | ||
| 772 | |||
| 773 | [[package]] | ||
| 774 | name = "vcell" | ||
| 775 | version = "0.1.3" | ||
| 776 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 777 | checksum = "77439c1b53d2303b20d9459b1ade71a83c716e3f9c34f3228c00e6f185d6c002" | ||
| 778 | |||
| 779 | [[package]] | ||
| 780 | name = "void" | ||
| 781 | version = "1.0.2" | ||
| 782 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 783 | checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" | ||
| 784 | |||
| 785 | [[package]] | ||
| 786 | name = "volatile-register" | ||
| 787 | version = "0.2.2" | ||
| 788 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 789 | checksum = "de437e2a6208b014ab52972a27e59b33fa2920d3e00fe05026167a1c509d19cc" | ||
| 790 | dependencies = [ | ||
| 791 | "vcell", | ||
| 792 | ] | ||
| 793 | |||
| 794 | [[package]] | ||
| 795 | name = "windows" | ||
| 796 | version = "0.61.3" | ||
| 797 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 798 | checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" | ||
| 799 | dependencies = [ | ||
| 800 | "windows-collections", | ||
| 801 | "windows-core", | ||
| 802 | "windows-future", | ||
| 803 | "windows-link 0.1.3", | ||
| 804 | "windows-numerics", | ||
| 805 | ] | ||
| 806 | |||
| 807 | [[package]] | ||
| 808 | name = "windows-collections" | ||
| 809 | version = "0.2.0" | ||
| 810 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 811 | checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" | ||
| 812 | dependencies = [ | ||
| 813 | "windows-core", | ||
| 814 | ] | ||
| 815 | |||
| 816 | [[package]] | ||
| 817 | name = "windows-core" | ||
| 818 | version = "0.61.2" | ||
| 819 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 820 | checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" | ||
| 821 | dependencies = [ | ||
| 822 | "windows-implement", | ||
| 823 | "windows-interface", | ||
| 824 | "windows-link 0.1.3", | ||
| 825 | "windows-result", | ||
| 826 | "windows-strings", | ||
| 827 | ] | ||
| 828 | |||
| 829 | [[package]] | ||
| 830 | name = "windows-future" | ||
| 831 | version = "0.2.1" | ||
| 832 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 833 | checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" | ||
| 834 | dependencies = [ | ||
| 835 | "windows-core", | ||
| 836 | "windows-link 0.1.3", | ||
| 837 | "windows-threading", | ||
| 838 | ] | ||
| 839 | |||
| 840 | [[package]] | ||
| 841 | name = "windows-implement" | ||
| 842 | version = "0.60.2" | ||
| 843 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 844 | checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" | ||
| 845 | dependencies = [ | ||
| 846 | "proc-macro2", | ||
| 847 | "quote", | ||
| 848 | "syn", | ||
| 849 | ] | ||
| 850 | |||
| 851 | [[package]] | ||
| 852 | name = "windows-interface" | ||
| 853 | version = "0.59.3" | ||
| 854 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 855 | checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" | ||
| 856 | dependencies = [ | ||
| 857 | "proc-macro2", | ||
| 858 | "quote", | ||
| 859 | "syn", | ||
| 860 | ] | ||
| 861 | |||
| 862 | [[package]] | ||
| 863 | name = "windows-link" | ||
| 864 | version = "0.1.3" | ||
| 865 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 866 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" | ||
| 867 | |||
| 868 | [[package]] | ||
| 869 | name = "windows-link" | ||
| 870 | version = "0.2.1" | ||
| 871 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 872 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" | ||
| 873 | |||
| 874 | [[package]] | ||
| 875 | name = "windows-numerics" | ||
| 876 | version = "0.2.0" | ||
| 877 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 878 | checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" | ||
| 879 | dependencies = [ | ||
| 880 | "windows-core", | ||
| 881 | "windows-link 0.1.3", | ||
| 882 | ] | ||
| 883 | |||
| 884 | [[package]] | ||
| 885 | name = "windows-result" | ||
| 886 | version = "0.3.4" | ||
| 887 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 888 | checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" | ||
| 889 | dependencies = [ | ||
| 890 | "windows-link 0.1.3", | ||
| 891 | ] | ||
| 892 | |||
| 893 | [[package]] | ||
| 894 | name = "windows-strings" | ||
| 895 | version = "0.4.2" | ||
| 896 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 897 | checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" | ||
| 898 | dependencies = [ | ||
| 899 | "windows-link 0.1.3", | ||
| 900 | ] | ||
| 901 | |||
| 902 | [[package]] | ||
| 903 | name = "windows-sys" | ||
| 904 | version = "0.61.2" | ||
| 905 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 906 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" | ||
| 907 | dependencies = [ | ||
| 908 | "windows-link 0.2.1", | ||
| 909 | ] | ||
| 910 | |||
| 911 | [[package]] | ||
| 912 | name = "windows-threading" | ||
| 913 | version = "0.1.0" | ||
| 914 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 915 | checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" | ||
| 916 | dependencies = [ | ||
| 917 | "windows-link 0.1.3", | ||
| 918 | ] | ||
