1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "0.7.18" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "anyhow" 16version = "1.0.58" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" 19 20[[package]] 21name = "assertions" 22version = "0.1.0" 23 24[[package]] 25name = "async-task" 26version = "4.3.0" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" 29 30[[package]] 31name = "async-trait" 32version = "0.1.56" 33source = "registry+https://github.com/rust-lang/crates.io-index" 34checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716" 35dependencies = [ 36 "proc-macro2", 37 "quote", 38 "syn", 39] 40 41[[package]] 42name = "atty" 43version = "0.2.14" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 46dependencies = [ 47 "hermit-abi", 48 "libc", 49 "winapi", 50] 51 52[[package]] 53name = "audio_streams" 54version = "0.1.0" 55dependencies = [ 56 "async-trait", 57 "futures", 58 "remain", 59 "serde", 60 "thiserror", 61] 62 63[[package]] 64name = "autocfg" 65version = "1.1.0" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 68 69[[package]] 70name = "base" 71version = "0.1.0" 72dependencies = [ 73 "audio_streams", 74 "base_event_token_derive", 75 "cfg-if", 76 "chrono", 77 "data_model", 78 "env_logger", 79 "libc", 80 "log", 81 "once_cell", 82 "protobuf", 83 "rand", 84 "remain", 85 "serde", 86 "serde_json", 87 "smallvec", 88 "sync", 89 "tempfile", 90 "thiserror", 91 "uuid", 92 "win_util", 93 "winapi", 94] 95 96[[package]] 97name = "base_event_token_derive" 98version = "0.1.0" 99dependencies = [ 100 "proc-macro2", 101 "quote", 102 "syn", 103] 104 105[[package]] 106name = "bitflags" 107version = "1.3.2" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 110 111[[package]] 112name = "cfg-if" 113version = "1.0.0" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 116 117[[package]] 118name = "chrono" 119version = "0.4.19" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 122dependencies = [ 123 "libc", 124 "num-integer", 125 "num-traits", 126 "time", 127 "winapi", 128] 129 130[[package]] 131name = "const-sha1" 132version = "0.2.0" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "fb58b6451e8c2a812ad979ed1d83378caa5e927eef2622017a45f251457c2c9d" 135 136[[package]] 137name = "cros_async" 138version = "0.2.0" 139dependencies = [ 140 "anyhow", 141 "async-task", 142 "base", 143 "data_model", 144 "futures", 145 "futures-executor", 146 "futures-util", 147 "intrusive-collections", 148 "io-uring", 149 "libc", 150 "memoffset 0.6.5", 151 "mio", 152 "once_cell", 153 "slab", 154 "smallvec", 155 "sync", 156 "tempfile", 157 "thiserror", 158] 159 160[[package]] 161name = "data_model" 162version = "0.1.0" 163dependencies = [ 164 "assertions", 165 "cfg-if", 166 "libc", 167 "remain", 168 "serde", 169 "thiserror", 170 "winapi", 171] 172 173[[package]] 174name = "enumn" 175version = "0.1.5" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "038b1afa59052df211f9efd58f8b1d84c242935ede1c3dbaed26b018a9e06ae2" 178dependencies = [ 179 "proc-macro2", 180 "quote", 181 "syn", 182] 183 184[[package]] 185name = "env_logger" 186version = "0.9.0" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 189dependencies = [ 190 "atty", 191 "humantime", 192 "log", 193 "regex", 194 "termcolor", 195] 196 197[[package]] 198name = "fastrand" 199version = "1.8.0" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 202dependencies = [ 203 "instant", 204] 205 206[[package]] 207name = "futures" 208version = "0.3.21" 209source = "registry+https://github.com/rust-lang/crates.io-index" 210checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 211dependencies = [ 212 "futures-channel", 213 "futures-core", 214 "futures-executor", 215 "futures-io", 216 "futures-sink", 217 "futures-task", 218 "futures-util", 219] 220 221[[package]] 222name = "futures-channel" 223version = "0.3.21" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 226dependencies = [ 227 "futures-core", 228 "futures-sink", 229] 230 231[[package]] 232name = "futures-core" 233version = "0.3.21" 234source = "registry+https://github.com/rust-lang/crates.io-index" 235checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 236 237[[package]] 238name = "futures-executor" 239version = "0.3.21" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 242dependencies = [ 243 "futures-core", 244 "futures-task", 245 "futures-util", 246 "num_cpus", 247] 248 249[[package]] 250name = "futures-io" 251version = "0.3.21" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 254 255[[package]] 256name = "futures-macro" 257version = "0.3.21" 258source = "registry+https://github.com/rust-lang/crates.io-index" 259checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 260dependencies = [ 261 "proc-macro2", 262 "quote", 263 "syn", 264] 265 266[[package]] 267name = "futures-sink" 268version = "0.3.21" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 271 272[[package]] 273name = "futures-task" 274version = "0.3.21" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 277 278[[package]] 279name = "futures-util" 280version = "0.3.21" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 283dependencies = [ 284 "futures-channel", 285 "futures-core", 286 "futures-io", 287 "futures-macro", 288 "futures-sink", 289 "futures-task", 290 "memchr", 291 "pin-project-lite", 292 "pin-utils", 293 "slab", 294] 295 296[[package]] 297name = "getrandom" 298version = "0.2.7" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 301dependencies = [ 302 "cfg-if", 303 "libc", 304 "wasi 0.11.0+wasi-snapshot-preview1", 305] 306 307[[package]] 308name = "hermit-abi" 309version = "0.1.19" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 312dependencies = [ 313 "libc", 314] 315 316[[package]] 317name = "humantime" 318version = "2.1.0" 319source = "registry+https://github.com/rust-lang/crates.io-index" 320checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 321 322[[package]] 323name = "instant" 324version = "0.1.12" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 327dependencies = [ 328 "cfg-if", 329] 330 331[[package]] 332name = "intrusive-collections" 333version = "0.9.4" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "bfe531a7789d7120f3e17d4f3f2cd95f54418ba7354f60b7b622b6644a07888a" 336dependencies = [ 337 "memoffset 0.5.6", 338] 339 340[[package]] 341name = "io-uring" 342version = "0.5.3" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "427496d698429d86ff947537dff68facb83fe753b7abea4fab4ac1c4b7a4b94b" 345dependencies = [ 346 "bitflags", 347 "libc", 348] 349 350[[package]] 351name = "itoa" 352version = "1.0.2" 353source = "registry+https://github.com/rust-lang/crates.io-index" 354checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 355 356[[package]] 357name = "libc" 358version = "0.2.126" 359source = "registry+https://github.com/rust-lang/crates.io-index" 360checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 361 362[[package]] 363name = "log" 364version = "0.4.17" 365source = "registry+https://github.com/rust-lang/crates.io-index" 366checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 367dependencies = [ 368 "cfg-if", 369] 370 371[[package]] 372name = "memchr" 373version = "2.5.0" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 376 377[[package]] 378name = "memoffset" 379version = "0.5.6" 380source = "registry+https://github.com/rust-lang/crates.io-index" 381checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" 382dependencies = [ 383 "autocfg", 384] 385 386[[package]] 387name = "memoffset" 388version = "0.6.5" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 391dependencies = [ 392 "autocfg", 393] 394 395[[package]] 396name = "mio" 397version = "0.7.14" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 400dependencies = [ 401 "libc", 402 "log", 403 "miow", 404 "ntapi", 405 "winapi", 406] 407 408[[package]] 409name = "miow" 410version = "0.3.7" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 413dependencies = [ 414 "winapi", 415] 416 417[[package]] 418name = "ntapi" 419version = "0.3.7" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 422dependencies = [ 423 "winapi", 424] 425 426[[package]] 427name = "num-integer" 428version = "0.1.45" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 431dependencies = [ 432 "autocfg", 433 "num-traits", 434] 435 436[[package]] 437name = "num-traits" 438version = "0.2.15" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 441dependencies = [ 442 "autocfg", 443] 444 445[[package]] 446name = "num_cpus" 447version = "1.13.1" 448source = "registry+https://github.com/rust-lang/crates.io-index" 449checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 450dependencies = [ 451 "hermit-abi", 452 "libc", 453] 454 455[[package]] 456name = "once_cell" 457version = "1.13.0" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 460 461[[package]] 462name = "pin-project-lite" 463version = "0.2.9" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 466 467[[package]] 468name = "pin-utils" 469version = "0.1.0" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 472 473[[package]] 474name = "ppv-lite86" 475version = "0.2.16" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 478 479[[package]] 480name = "proc-macro2" 481version = "1.0.42" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "c278e965f1d8cf32d6e0e96de3d3e79712178ae67986d9cf9151f51e95aac89b" 484dependencies = [ 485 "unicode-ident", 486] 487 488[[package]] 489name = "protobuf" 490version = "2.27.1" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "cf7e6d18738ecd0902d30d1ad232c9125985a3422929b16c65517b38adc14f96" 493dependencies = [ 494 "serde", 495 "serde_derive", 496] 497 498[[package]] 499name = "quote" 500version = "1.0.20" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 503dependencies = [ 504 "proc-macro2", 505] 506 507[[package]] 508name = "rand" 509version = "0.8.5" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 512dependencies = [ 513 "libc", 514 "rand_chacha", 515 "rand_core", 516] 517 518[[package]] 519name = "rand_chacha" 520version = "0.3.1" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 523dependencies = [ 524 "ppv-lite86", 525 "rand_core", 526] 527 528[[package]] 529name = "rand_core" 530version = "0.6.3" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 533dependencies = [ 534 "getrandom", 535] 536 537[[package]] 538name = "redox_syscall" 539version = "0.2.16" 540source = "registry+https://github.com/rust-lang/crates.io-index" 541checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 542dependencies = [ 543 "bitflags", 544] 545 546[[package]] 547name = "regex" 548version = "1.6.0" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 551dependencies = [ 552 "aho-corasick", 553 "memchr", 554 "regex-syntax", 555] 556 557[[package]] 558name = "regex-syntax" 559version = "0.6.27" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 562 563[[package]] 564name = "remain" 565version = "0.2.3" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "0c35270ea384ac1762895831cc8acb96f171468e52cec82ed9186f9416209fa4" 568dependencies = [ 569 "proc-macro2", 570 "quote", 571 "syn", 572] 573 574[[package]] 575name = "remove_dir_all" 576version = "0.5.3" 577source = "registry+https://github.com/rust-lang/crates.io-index" 578checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 579dependencies = [ 580 "winapi", 581] 582 583[[package]] 584name = "ryu" 585version = "1.0.10" 586source = "registry+https://github.com/rust-lang/crates.io-index" 587checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 588 589[[package]] 590name = "serde" 591version = "1.0.140" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" 594dependencies = [ 595 "serde_derive", 596] 597 598[[package]] 599name = "serde_derive" 600version = "1.0.140" 601source = "registry+https://github.com/rust-lang/crates.io-index" 602checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" 603dependencies = [ 604 "proc-macro2", 605 "quote", 606 "syn", 607] 608 609[[package]] 610name = "serde_json" 611version = "1.0.82" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" 614dependencies = [ 615 "itoa", 616 "ryu", 617 "serde", 618] 619 620[[package]] 621name = "slab" 622version = "0.4.7" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 625dependencies = [ 626 "autocfg", 627] 628 629[[package]] 630name = "smallvec" 631version = "1.9.0" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 634 635[[package]] 636name = "syn" 637version = "1.0.98" 638source = "registry+https://github.com/rust-lang/crates.io-index" 639checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 640dependencies = [ 641 "proc-macro2", 642 "quote", 643 "unicode-ident", 644] 645 646[[package]] 647name = "sync" 648version = "0.1.99" 649 650[[package]] 651name = "tempfile" 652version = "3.3.0" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 655dependencies = [ 656 "cfg-if", 657 "fastrand", 658 "libc", 659 "redox_syscall", 660 "remove_dir_all", 661 "winapi", 662] 663 664[[package]] 665name = "termcolor" 666version = "1.1.3" 667source = "registry+https://github.com/rust-lang/crates.io-index" 668checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 669dependencies = [ 670 "winapi-util", 671] 672 673[[package]] 674name = "thiserror" 675version = "1.0.31" 676source = "registry+https://github.com/rust-lang/crates.io-index" 677checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" 678dependencies = [ 679 "thiserror-impl", 680] 681 682[[package]] 683name = "thiserror-impl" 684version = "1.0.31" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" 687dependencies = [ 688 "proc-macro2", 689 "quote", 690 "syn", 691] 692 693[[package]] 694name = "time" 695version = "0.1.44" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 698dependencies = [ 699 "libc", 700 "wasi 0.10.0+wasi-snapshot-preview1", 701 "winapi", 702] 703 704[[package]] 705name = "unicode-ident" 706version = "1.0.2" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" 709 710[[package]] 711name = "uuid" 712version = "0.8.2" 713source = "registry+https://github.com/rust-lang/crates.io-index" 714checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 715dependencies = [ 716 "getrandom", 717] 718 719[[package]] 720name = "wasi" 721version = "0.10.0+wasi-snapshot-preview1" 722source = "registry+https://github.com/rust-lang/crates.io-index" 723checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 724 725[[package]] 726name = "wasi" 727version = "0.11.0+wasi-snapshot-preview1" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 730 731[[package]] 732name = "win_util" 733version = "0.1.0" 734dependencies = [ 735 "anyhow", 736 "enumn", 737 "libc", 738 "once_cell", 739 "serde", 740 "winapi", 741 "windows", 742] 743 744[[package]] 745name = "winapi" 746version = "0.3.9" 747source = "registry+https://github.com/rust-lang/crates.io-index" 748checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 749dependencies = [ 750 "winapi-i686-pc-windows-gnu", 751 "winapi-x86_64-pc-windows-gnu", 752] 753 754[[package]] 755name = "winapi-i686-pc-windows-gnu" 756version = "0.4.0" 757source = "registry+https://github.com/rust-lang/crates.io-index" 758checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 759 760[[package]] 761name = "winapi-util" 762version = "0.1.5" 763source = "registry+https://github.com/rust-lang/crates.io-index" 764checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 765dependencies = [ 766 "winapi", 767] 768 769[[package]] 770name = "winapi-x86_64-pc-windows-gnu" 771version = "0.4.0" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 774 775[[package]] 776name = "windows" 777version = "0.10.0" 778source = "registry+https://github.com/rust-lang/crates.io-index" 779checksum = "a43e544233e20425d5a58e9671cf76d6aed9e6f211508c050facb29b188dc10f" 780dependencies = [ 781 "const-sha1", 782 "windows_gen", 783 "windows_macros", 784] 785 786[[package]] 787name = "windows_gen" 788version = "0.10.0" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "bc6283570a39b3594e31c64a498f48058758cc063eb087d972bb6476ad134a16" 791 792[[package]] 793name = "windows_macros" 794version = "0.10.0" 795source = "registry+https://github.com/rust-lang/crates.io-index" 796checksum = "f757e7665f81f33ace9f89b0f0fc3a7c770e24ff4fa1475c6503bb35b4524893" 797dependencies = [ 798 "syn", 799 "windows_gen", 800] 801