[WIP] A simple wake-on-lan service
at main 760 lines 20 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "atomic-waker" 7version = "1.1.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 10 11[[package]] 12name = "axum" 13version = "0.8.8" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 16dependencies = [ 17 "axum-core", 18 "bytes", 19 "form_urlencoded", 20 "futures-util", 21 "http", 22 "http-body", 23 "http-body-util", 24 "hyper", 25 "hyper-util", 26 "itoa", 27 "matchit", 28 "memchr", 29 "mime", 30 "percent-encoding", 31 "pin-project-lite", 32 "serde_core", 33 "serde_json", 34 "serde_path_to_error", 35 "serde_urlencoded", 36 "sync_wrapper", 37 "tokio", 38 "tower", 39 "tower-layer", 40 "tower-service", 41 "tracing", 42] 43 44[[package]] 45name = "axum-core" 46version = "0.5.6" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 49dependencies = [ 50 "bytes", 51 "futures-core", 52 "http", 53 "http-body", 54 "http-body-util", 55 "mime", 56 "pin-project-lite", 57 "sync_wrapper", 58 "tower-layer", 59 "tower-service", 60 "tracing", 61] 62 63[[package]] 64name = "bitflags" 65version = "2.10.0" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 68 69[[package]] 70name = "bytes" 71version = "1.11.1" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 74 75[[package]] 76name = "cfg-if" 77version = "1.0.4" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 80 81[[package]] 82name = "equivalent" 83version = "1.0.2" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 86 87[[package]] 88name = "errno" 89version = "0.3.14" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 92dependencies = [ 93 "libc", 94 "windows-sys 0.61.2", 95] 96 97[[package]] 98name = "form_urlencoded" 99version = "1.2.2" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 102dependencies = [ 103 "percent-encoding", 104] 105 106[[package]] 107name = "futures-channel" 108version = "0.3.32" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 111dependencies = [ 112 "futures-core", 113] 114 115[[package]] 116name = "futures-core" 117version = "0.3.32" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 120 121[[package]] 122name = "futures-task" 123version = "0.3.32" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 126 127[[package]] 128name = "futures-util" 129version = "0.3.32" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 132dependencies = [ 133 "futures-core", 134 "futures-task", 135 "pin-project-lite", 136 "slab", 137] 138 139[[package]] 140name = "hashbrown" 141version = "0.16.1" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 144 145[[package]] 146name = "http" 147version = "1.4.0" 148source = "registry+https://github.com/rust-lang/crates.io-index" 149checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 150dependencies = [ 151 "bytes", 152 "itoa", 153] 154 155[[package]] 156name = "http-body" 157version = "1.0.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 160dependencies = [ 161 "bytes", 162 "http", 163] 164 165[[package]] 166name = "http-body-util" 167version = "0.1.3" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 170dependencies = [ 171 "bytes", 172 "futures-core", 173 "http", 174 "http-body", 175 "pin-project-lite", 176] 177 178[[package]] 179name = "httparse" 180version = "1.10.1" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 183 184[[package]] 185name = "httpdate" 186version = "1.0.3" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 189 190[[package]] 191name = "hyper" 192version = "1.8.1" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 195dependencies = [ 196 "atomic-waker", 197 "bytes", 198 "futures-channel", 199 "futures-core", 200 "http", 201 "http-body", 202 "httparse", 203 "httpdate", 204 "itoa", 205 "pin-project-lite", 206 "pin-utils", 207 "smallvec", 208 "tokio", 209] 210 211[[package]] 212name = "hyper-util" 213version = "0.1.20" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 216dependencies = [ 217 "bytes", 218 "http", 219 "http-body", 220 "hyper", 221 "pin-project-lite", 222 "tokio", 223 "tower-service", 224] 225 226[[package]] 227name = "indexmap" 228version = "2.13.0" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 231dependencies = [ 232 "equivalent", 233 "hashbrown", 234] 235 236[[package]] 237name = "itoa" 238version = "1.0.17" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 241 242[[package]] 243name = "libc" 244version = "0.2.182" 245source = "registry+https://github.com/rust-lang/crates.io-index" 246checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" 247 248[[package]] 249name = "lock_api" 250version = "0.4.14" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 253dependencies = [ 254 "scopeguard", 255] 256 257[[package]] 258name = "log" 259version = "0.4.29" 260source = "registry+https://github.com/rust-lang/crates.io-index" 261checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 262 263[[package]] 264name = "matchit" 265version = "0.8.4" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 268 269[[package]] 270name = "memchr" 271version = "2.8.0" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 274 275[[package]] 276name = "mime" 277version = "0.3.17" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 280 281[[package]] 282name = "mio" 283version = "1.1.1" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 286dependencies = [ 287 "libc", 288 "wasi", 289 "windows-sys 0.61.2", 290] 291 292[[package]] 293name = "once_cell" 294version = "1.21.3" 295source = "registry+https://github.com/rust-lang/crates.io-index" 296checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 297 298[[package]] 299name = "parking_lot" 300version = "0.12.5" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 303dependencies = [ 304 "lock_api", 305 "parking_lot_core", 306] 307 308[[package]] 309name = "parking_lot_core" 310version = "0.9.12" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 313dependencies = [ 314 "cfg-if", 315 "libc", 316 "redox_syscall", 317 "smallvec", 318 "windows-link", 319] 320 321[[package]] 322name = "percent-encoding" 323version = "2.3.2" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 326 327[[package]] 328name = "pin-project-lite" 329version = "0.2.16" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 332 333[[package]] 334name = "pin-utils" 335version = "0.1.0" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 338 339[[package]] 340name = "proc-macro2" 341version = "1.0.106" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 344dependencies = [ 345 "unicode-ident", 346] 347 348[[package]] 349name = "quote" 350version = "1.0.44" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" 353dependencies = [ 354 "proc-macro2", 355] 356 357[[package]] 358name = "redox_syscall" 359version = "0.5.18" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 362dependencies = [ 363 "bitflags", 364] 365 366[[package]] 367name = "ryu" 368version = "1.0.23" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 371 372[[package]] 373name = "scopeguard" 374version = "1.2.0" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 377 378[[package]] 379name = "serde" 380version = "1.0.228" 381source = "registry+https://github.com/rust-lang/crates.io-index" 382checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 383dependencies = [ 384 "serde_core", 385 "serde_derive", 386] 387 388[[package]] 389name = "serde_core" 390version = "1.0.228" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 393dependencies = [ 394 "serde_derive", 395] 396 397[[package]] 398name = "serde_derive" 399version = "1.0.228" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 402dependencies = [ 403 "proc-macro2", 404 "quote", 405 "syn", 406] 407 408[[package]] 409name = "serde_json" 410version = "1.0.149" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 413dependencies = [ 414 "itoa", 415 "memchr", 416 "serde", 417 "serde_core", 418 "zmij", 419] 420 421[[package]] 422name = "serde_path_to_error" 423version = "0.1.20" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 426dependencies = [ 427 "itoa", 428 "serde", 429 "serde_core", 430] 431 432[[package]] 433name = "serde_spanned" 434version = "1.0.4" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" 437dependencies = [ 438 "serde_core", 439] 440 441[[package]] 442name = "serde_urlencoded" 443version = "0.7.1" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 446dependencies = [ 447 "form_urlencoded", 448 "itoa", 449 "ryu", 450 "serde", 451] 452 453[[package]] 454name = "signal-hook-registry" 455version = "1.4.8" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 458dependencies = [ 459 "errno", 460 "libc", 461] 462 463[[package]] 464name = "slab" 465version = "0.4.12" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 468 469[[package]] 470name = "smallvec" 471version = "1.15.1" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 474 475[[package]] 476name = "socket2" 477version = "0.6.2" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" 480dependencies = [ 481 "libc", 482 "windows-sys 0.60.2", 483] 484 485[[package]] 486name = "syn" 487version = "2.0.116" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb" 490dependencies = [ 491 "proc-macro2", 492 "quote", 493 "unicode-ident", 494] 495 496[[package]] 497name = "sync_wrapper" 498version = "1.0.2" 499source = "registry+https://github.com/rust-lang/crates.io-index" 500checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 501 502[[package]] 503name = "thiserror" 504version = "2.0.18" 505source = "registry+https://github.com/rust-lang/crates.io-index" 506checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 507dependencies = [ 508 "thiserror-impl", 509] 510 511[[package]] 512name = "thiserror-impl" 513version = "2.0.18" 514source = "registry+https://github.com/rust-lang/crates.io-index" 515checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 516dependencies = [ 517 "proc-macro2", 518 "quote", 519 "syn", 520] 521 522[[package]] 523name = "tokio" 524version = "1.49.0" 525source = "registry+https://github.com/rust-lang/crates.io-index" 526checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 527dependencies = [ 528 "bytes", 529 "libc", 530 "mio", 531 "parking_lot", 532 "pin-project-lite", 533 "signal-hook-registry", 534 "socket2", 535 "tokio-macros", 536 "windows-sys 0.61.2", 537] 538 539[[package]] 540name = "tokio-macros" 541version = "2.6.0" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 544dependencies = [ 545 "proc-macro2", 546 "quote", 547 "syn", 548] 549 550[[package]] 551name = "toml" 552version = "1.0.2+spec-1.1.0" 553source = "registry+https://github.com/rust-lang/crates.io-index" 554checksum = "d1dfefef6a142e93f346b64c160934eb13b5594b84ab378133ac6815cb2bd57f" 555dependencies = [ 556 "indexmap", 557 "serde_core", 558 "serde_spanned", 559 "toml_datetime", 560 "toml_parser", 561 "toml_writer", 562 "winnow", 563] 564 565[[package]] 566name = "toml_datetime" 567version = "1.0.0+spec-1.1.0" 568source = "registry+https://github.com/rust-lang/crates.io-index" 569checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" 570dependencies = [ 571 "serde_core", 572] 573 574[[package]] 575name = "toml_parser" 576version = "1.0.9+spec-1.1.0" 577source = "registry+https://github.com/rust-lang/crates.io-index" 578checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" 579dependencies = [ 580 "winnow", 581] 582 583[[package]] 584name = "toml_writer" 585version = "1.0.6+spec-1.1.0" 586source = "registry+https://github.com/rust-lang/crates.io-index" 587checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" 588 589[[package]] 590name = "tower" 591version = "0.5.3" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 594dependencies = [ 595 "futures-core", 596 "futures-util", 597 "pin-project-lite", 598 "sync_wrapper", 599 "tokio", 600 "tower-layer", 601 "tower-service", 602 "tracing", 603] 604 605[[package]] 606name = "tower-layer" 607version = "0.3.3" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 610 611[[package]] 612name = "tower-service" 613version = "0.3.3" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 616 617[[package]] 618name = "tracing" 619version = "0.1.44" 620source = "registry+https://github.com/rust-lang/crates.io-index" 621checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 622dependencies = [ 623 "log", 624 "pin-project-lite", 625 "tracing-core", 626] 627 628[[package]] 629name = "tracing-core" 630version = "0.1.36" 631source = "registry+https://github.com/rust-lang/crates.io-index" 632checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 633dependencies = [ 634 "once_cell", 635] 636 637[[package]] 638name = "unicode-ident" 639version = "1.0.24" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 642 643[[package]] 644name = "wasi" 645version = "0.11.1+wasi-snapshot-preview1" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 648 649[[package]] 650name = "windows-link" 651version = "0.2.1" 652source = "registry+https://github.com/rust-lang/crates.io-index" 653checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 654 655[[package]] 656name = "windows-sys" 657version = "0.60.2" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 660dependencies = [ 661 "windows-targets", 662] 663 664[[package]] 665name = "windows-sys" 666version = "0.61.2" 667source = "registry+https://github.com/rust-lang/crates.io-index" 668checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 669dependencies = [ 670 "windows-link", 671] 672 673[[package]] 674name = "windows-targets" 675version = "0.53.5" 676source = "registry+https://github.com/rust-lang/crates.io-index" 677checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 678dependencies = [ 679 "windows-link", 680 "windows_aarch64_gnullvm", 681 "windows_aarch64_msvc", 682 "windows_i686_gnu", 683 "windows_i686_gnullvm", 684 "windows_i686_msvc", 685 "windows_x86_64_gnu", 686 "windows_x86_64_gnullvm", 687 "windows_x86_64_msvc", 688] 689 690[[package]] 691name = "windows_aarch64_gnullvm" 692version = "0.53.1" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 695 696[[package]] 697name = "windows_aarch64_msvc" 698version = "0.53.1" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 701 702[[package]] 703name = "windows_i686_gnu" 704version = "0.53.1" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 707 708[[package]] 709name = "windows_i686_gnullvm" 710version = "0.53.1" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 713 714[[package]] 715name = "windows_i686_msvc" 716version = "0.53.1" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 719 720[[package]] 721name = "windows_x86_64_gnu" 722version = "0.53.1" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 725 726[[package]] 727name = "windows_x86_64_gnullvm" 728version = "0.53.1" 729source = "registry+https://github.com/rust-lang/crates.io-index" 730checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 731 732[[package]] 733name = "windows_x86_64_msvc" 734version = "0.53.1" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 737 738[[package]] 739name = "winnow" 740version = "0.7.14" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 743 744[[package]] 745name = "wol" 746version = "0.1.0" 747dependencies = [ 748 "axum", 749 "serde", 750 "serde_json", 751 "thiserror", 752 "tokio", 753 "toml", 754] 755 756[[package]] 757name = "zmij" 758version = "1.0.21" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"