1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aarch64" 7version = "0.1.0" 8dependencies = [ 9 "anyhow", 10 "arch", 11 "base", 12 "cros_fdt", 13 "devices", 14 "gdbstub", 15 "gdbstub_arch", 16 "hypervisor", 17 "jail", 18 "kernel_cmdline", 19 "kernel_loader", 20 "libc", 21 "minijail", 22 "rand", 23 "remain", 24 "resources", 25 "swap", 26 "sync", 27 "thiserror", 28 "vm_control", 29 "vm_memory", 30] 31 32[[package]] 33name = "acpi_tables" 34version = "0.1.0" 35dependencies = [ 36 "tempfile", 37 "zerocopy", 38] 39 40[[package]] 41name = "addr2line" 42version = "0.21.0" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 45dependencies = [ 46 "gimli", 47] 48 49[[package]] 50name = "adler" 51version = "1.0.2" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 54 55[[package]] 56name = "aho-corasick" 57version = "0.7.18" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 60dependencies = [ 61 "memchr", 62] 63 64[[package]] 65name = "android_audio" 66version = "0.1.0" 67dependencies = [ 68 "async-trait", 69 "audio_streams", 70 "base", 71 "thiserror", 72] 73 74[[package]] 75name = "android_log-sys" 76version = "0.3.1" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "5ecc8056bf6ab9892dcd53216c83d1597487d7dacac16c8df6b877d127df9937" 79 80[[package]] 81name = "anti_tamper" 82version = "0.1.0" 83dependencies = [ 84 "base", 85] 86 87[[package]] 88name = "anyhow" 89version = "1.0.58" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" 92 93[[package]] 94name = "arbitrary" 95version = "1.1.6" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "f44124848854b941eafdb34f05b3bcf59472f643c7e151eba7c2b69daa469ed5" 98 99[[package]] 100name = "arch" 101version = "0.1.0" 102dependencies = [ 103 "acpi_tables", 104 "anyhow", 105 "base", 106 "cfg-if", 107 "cros_fdt", 108 "cros_tracing", 109 "devices", 110 "gdbstub", 111 "gdbstub_arch", 112 "hypervisor", 113 "jail", 114 "kernel_cmdline", 115 "libc", 116 "metrics", 117 "minijail", 118 "power_monitor", 119 "remain", 120 "resources", 121 "serde", 122 "serde_json", 123 "serde_keyvalue", 124 "swap", 125 "sync", 126 "tempfile", 127 "thiserror", 128 "uuid", 129 "vm_control", 130 "vm_memory", 131 "winapi", 132] 133 134[[package]] 135name = "argh" 136version = "0.1.10" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "ab257697eb9496bf75526f0217b5ed64636a9cfafa78b8365c71bd283fcef93e" 139dependencies = [ 140 "argh_derive", 141 "argh_shared", 142] 143 144[[package]] 145name = "argh_derive" 146version = "0.1.10" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "b382dbd3288e053331f03399e1db106c9fb0d8562ad62cb04859ae926f324fa6" 149dependencies = [ 150 "argh_shared", 151 "proc-macro2", 152 "quote 1.0.36", 153 "syn 1.0.103", 154] 155 156[[package]] 157name = "argh_helpers" 158version = "0.1.0" 159dependencies = [ 160 "proc-macro2", 161 "quote 1.0.36", 162 "syn 2.0.77", 163] 164 165[[package]] 166name = "argh_shared" 167version = "0.1.10" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "64cb94155d965e3d37ffbbe7cc5b82c3dd79dd33bd48e536f73d2cfb8d85506f" 170 171[[package]] 172name = "ash" 173version = "0.37.3+1.3.251" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 176dependencies = [ 177 "libloading", 178] 179 180[[package]] 181name = "async-task" 182version = "4.3.0" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" 185 186[[package]] 187name = "async-trait" 188version = "0.1.56" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716" 191dependencies = [ 192 "proc-macro2", 193 "quote 1.0.36", 194 "syn 1.0.103", 195] 196 197[[package]] 198name = "atty" 199version = "0.2.14" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 202dependencies = [ 203 "hermit-abi 0.1.19", 204 "libc", 205 "winapi", 206] 207 208[[package]] 209name = "audio_streams" 210version = "0.1.0" 211dependencies = [ 212 "async-trait", 213 "futures", 214 "remain", 215 "serde", 216 "thiserror", 217] 218 219[[package]] 220name = "audio_streams_conformance_test" 221version = "0.1.0" 222dependencies = [ 223 "argh", 224 "audio_streams", 225 "cfg-if", 226 "cros_async", 227 "libcras", 228 "remain", 229 "serde", 230 "serde_json", 231 "thiserror", 232] 233 234[[package]] 235name = "audio_util" 236version = "0.1.0" 237dependencies = [ 238 "async-trait", 239 "audio_streams", 240 "base", 241 "thiserror", 242] 243 244[[package]] 245name = "autocfg" 246version = "1.1.0" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 249 250[[package]] 251name = "backtrace" 252version = "0.3.69" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 255dependencies = [ 256 "addr2line", 257 "cc", 258 "cfg-if", 259 "libc", 260 "miniz_oxide", 261 "object", 262 "rustc-demangle", 263] 264 265[[package]] 266name = "balloon_control" 267version = "0.1.0" 268dependencies = [ 269 "serde", 270] 271 272[[package]] 273name = "base" 274version = "0.1.0" 275dependencies = [ 276 "android_log-sys", 277 "audio_streams", 278 "base_event_token_derive", 279 "cfg-if", 280 "chrono", 281 "env_logger", 282 "futures", 283 "libc", 284 "log", 285 "once_cell", 286 "protobuf", 287 "protos", 288 "rand", 289 "remain", 290 "serde", 291 "serde_json", 292 "smallvec", 293 "sync", 294 "tempfile", 295 "thiserror", 296 "uuid", 297 "win_util", 298 "winapi", 299 "zerocopy", 300] 301 302[[package]] 303name = "base_event_token_derive" 304version = "0.1.0" 305dependencies = [ 306 "proc-macro2", 307 "quote 1.0.36", 308 "syn 2.0.77", 309] 310 311[[package]] 312name = "base_tokio" 313version = "0.1.0" 314dependencies = [ 315 "anyhow", 316 "base", 317 "cfg-if", 318 "futures", 319 "libc", 320 "serde", 321 "sync", 322 "tokio", 323 "winapi", 324] 325 326[[package]] 327name = "bindgen" 328version = "0.63.0" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "36d860121800b2a9a94f9b5604b332d5cffb234ce17609ea479d723dbc9d3885" 331dependencies = [ 332 "bitflags 1.3.2", 333 "cexpr", 334 "clang-sys", 335 "lazy_static", 336 "lazycell", 337 "log", 338 "peeking_take_while", 339 "proc-macro2", 340 "quote 1.0.36", 341 "regex", 342 "rustc-hash", 343 "shlex", 344 "syn 1.0.103", 345 "which", 346] 347 348[[package]] 349name = "bindgen" 350version = "0.68.1" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 353dependencies = [ 354 "bitflags 2.4.0", 355 "cexpr", 356 "clang-sys", 357 "lazy_static", 358 "lazycell", 359 "peeking_take_while", 360 "proc-macro2", 361 "quote 1.0.36", 362 "regex", 363 "rustc-hash", 364 "shlex", 365 "syn 2.0.77", 366] 367 368[[package]] 369name = "bindgen" 370version = "0.69.4" 371source = "registry+https://github.com/rust-lang/crates.io-index" 372checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 373dependencies = [ 374 "bitflags 2.4.0", 375 "cexpr", 376 "clang-sys", 377 "itertools", 378 "lazy_static", 379 "lazycell", 380 "log", 381 "prettyplease", 382 "proc-macro2", 383 "quote 1.0.36", 384 "regex", 385 "rustc-hash", 386 "shlex", 387 "syn 2.0.77", 388 "which", 389] 390 391[[package]] 392name = "bit_field" 393version = "0.1.0" 394dependencies = [ 395 "bit_field_derive", 396] 397 398[[package]] 399name = "bit_field_derive" 400version = "0.1.0" 401dependencies = [ 402 "proc-macro2", 403 "quote 1.0.36", 404 "syn 2.0.77", 405] 406 407[[package]] 408name = "bitflags" 409version = "1.3.2" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 412 413[[package]] 414name = "bitflags" 415version = "2.4.0" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 418 419[[package]] 420name = "bitreader" 421version = "0.3.6" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "d84ea71c85d1fe98fe67a9b9988b1695bc24c0b0d3bfb18d4c510f44b4b09941" 424dependencies = [ 425 "cfg-if", 426] 427 428[[package]] 429name = "broker_ipc" 430version = "0.1.0" 431dependencies = [ 432 "anyhow", 433 "base", 434 "broker_ipc_product", 435 "crash_report", 436 "metrics", 437 "serde", 438] 439 440[[package]] 441name = "broker_ipc_product" 442version = "0.1.0" 443dependencies = [ 444 "anyhow", 445 "crash_report", 446 "serde", 447] 448 449[[package]] 450name = "bytemuck" 451version = "1.14.0" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 454dependencies = [ 455 "bytemuck_derive", 456] 457 458[[package]] 459name = "bytemuck_derive" 460version = "1.5.0" 461source = "registry+https://github.com/rust-lang/crates.io-index" 462checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 463dependencies = [ 464 "proc-macro2", 465 "quote 1.0.36", 466 "syn 2.0.77", 467] 468 469[[package]] 470name = "byteorder" 471version = "1.4.3" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 474 475[[package]] 476name = "bytes" 477version = "1.2.0" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "f0b3de4a0c5e67e16066a0715723abd91edc2f9001d09c46e1dca929351e130e" 480 481[[package]] 482name = "catapult_converter" 483version = "0.1.0" 484dependencies = [ 485 "argh", 486 "serde", 487 "serde_json", 488 "uuid", 489] 490 491[[package]] 492name = "cbindgen" 493version = "0.24.3" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "a6358dedf60f4d9b8db43ad187391afe959746101346fe51bb978126bec61dfb" 496dependencies = [ 497 "clap 3.2.23", 498 "heck", 499 "indexmap 1.9.1", 500 "log", 501 "proc-macro2", 502 "quote 1.0.36", 503 "serde", 504 "serde_json", 505 "syn 1.0.103", 506 "tempfile", 507 "toml", 508] 509 510[[package]] 511name = "cc" 512version = "1.0.90" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 515dependencies = [ 516 "jobserver", 517 "libc", 518] 519 520[[package]] 521name = "cexpr" 522version = "0.6.0" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 525dependencies = [ 526 "nom", 527] 528 529[[package]] 530name = "cfg-if" 531version = "1.0.0" 532source = "registry+https://github.com/rust-lang/crates.io-index" 533checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 534 535[[package]] 536name = "cfg_aliases" 537version = "0.1.1" 538source = "registry+https://github.com/rust-lang/crates.io-index" 539checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 540 541[[package]] 542name = "chrono" 543version = "0.4.35" 544source = "registry+https://github.com/rust-lang/crates.io-index" 545checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 546dependencies = [ 547 "num-traits", 548 "serde", 549] 550 551[[package]] 552name = "clang-sys" 553version = "1.4.0" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 556dependencies = [ 557 "glob", 558 "libc", 559 "libloading", 560] 561 562[[package]] 563name = "clap" 564version = "3.2.23" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 567dependencies = [ 568 "atty", 569 "bitflags 1.3.2", 570 "clap_lex 0.2.4", 571 "indexmap 1.9.1", 572 "strsim", 573 "termcolor", 574 "textwrap", 575] 576 577[[package]] 578name = "clap" 579version = "4.1.8" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5" 582dependencies = [ 583 "bitflags 1.3.2", 584 "clap_derive", 585 "clap_lex 0.3.2", 586 "is-terminal", 587 "once_cell", 588 "strsim", 589 "termcolor", 590] 591 592[[package]] 593name = "clap_derive" 594version = "4.1.8" 595source = "registry+https://github.com/rust-lang/crates.io-index" 596checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0" 597dependencies = [ 598 "heck", 599 "proc-macro-error", 600 "proc-macro2", 601 "quote 1.0.36", 602 "syn 1.0.103", 603] 604 605[[package]] 606name = "clap_lex" 607version = "0.2.4" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 610dependencies = [ 611 "os_str_bytes", 612] 613 614[[package]] 615name = "clap_lex" 616version = "0.3.2" 617source = "registry+https://github.com/rust-lang/crates.io-index" 618checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09" 619dependencies = [ 620 "os_str_bytes", 621] 622 623[[package]] 624name = "core-foundation" 625version = "0.9.4" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 628dependencies = [ 629 "core-foundation-sys", 630 "libc", 631] 632 633[[package]] 634name = "core-foundation-sys" 635version = "0.8.6" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 638 639[[package]] 640name = "core-graphics-types" 641version = "0.1.3" 642source = "registry+https://github.com/rust-lang/crates.io-index" 643checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 644dependencies = [ 645 "bitflags 1.3.2", 646 "core-foundation", 647 "libc", 648] 649 650[[package]] 651name = "crash_report" 652version = "0.1.0" 653dependencies = [ 654 "anyhow", 655 "base", 656 "serde", 657 "win_util", 658] 659 660[[package]] 661name = "crc32fast" 662version = "1.3.2" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 665dependencies = [ 666 "cfg-if", 667] 668 669[[package]] 670name = "cros-codecs" 671version = "0.0.4" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "277a30a0ddadfa014380ee30cc60330d260369855417c492fa94421d7c7e9229" 674dependencies = [ 675 "anyhow", 676 "bitreader", 677 "byteorder", 678 "bytes", 679 "crc32fast", 680 "cros-libva", 681 "enumn", 682 "log", 683 "thiserror", 684] 685 686[[package]] 687name = "cros-libva" 688version = "0.0.4" 689source = "registry+https://github.com/rust-lang/crates.io-index" 690checksum = "dc78ee9952d72572d126ef28338857d12c08a013ba39b77fd8e20201837def3e" 691dependencies = [ 692 "bitflags 1.3.2", 693 "log", 694 "pkg-config", 695 "thiserror", 696] 697 698[[package]] 699name = "cros_async" 700version = "0.1.1" 701dependencies = [ 702 "anyhow", 703 "async-task", 704 "async-trait", 705 "audio_streams", 706 "base", 707 "cfg-if", 708 "futures", 709 "futures-executor", 710 "futures-util", 711 "intrusive-collections", 712 "io_uring", 713 "libc", 714 "once_cell", 715 "paste", 716 "pin-utils", 717 "remain", 718 "serde", 719 "serde_keyvalue", 720 "slab", 721 "smallvec", 722 "static_assertions", 723 "sync", 724 "tempfile", 725 "thiserror", 726 "tokio", 727 "win_util", 728 "winapi", 729] 730 731[[package]] 732name = "cros_fdt" 733version = "0.1.0" 734dependencies = [ 735 "anyhow", 736 "indexmap 1.9.1", 737 "remain", 738 "thiserror", 739] 740 741[[package]] 742name = "cros_tracing" 743version = "0.1.0" 744dependencies = [ 745 "anyhow", 746 "base", 747 "cfg-if", 748 "cros_tracing_types", 749 "libtest-mimic", 750 "perfetto", 751 "sync", 752] 753 754[[package]] 755name = "cros_tracing_types" 756version = "0.1.0" 757dependencies = [ 758 "anyhow", 759 "sync", 760] 761 762[[package]] 763name = "crossbeam-channel" 764version = "0.5.8" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 767dependencies = [ 768 "cfg-if", 769 "crossbeam-utils", 770] 771 772[[package]] 773name = "crossbeam-deque" 774version = "0.8.3" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 777dependencies = [ 778 "cfg-if", 779 "crossbeam-epoch", 780 "crossbeam-utils", 781] 782 783[[package]] 784name = "crossbeam-epoch" 785version = "0.9.14" 786source = "registry+https://github.com/rust-lang/crates.io-index" 787checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 788dependencies = [ 789 "autocfg", 790 "cfg-if", 791 "crossbeam-utils", 792 "memoffset 0.8.0", 793 "scopeguard", 794] 795 796[[package]] 797name = "crossbeam-queue" 798version = "0.3.11" 799source = "registry+https://github.com/rust-lang/crates.io-index" 800checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 801dependencies = [ 802 "crossbeam-utils", 803] 804 805[[package]] 806name = "crossbeam-utils" 807version = "0.8.19" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 810 811[[package]] 812name = "crosvm" 813version = "0.1.0" 814dependencies = [ 815 "aarch64", 816 "acpi_tables", 817 "android_audio", 818 "anti_tamper", 819 "anyhow", 820 "arch", 821 "argh", 822 "argh_helpers", 823 "audio_streams", 824 "base", 825 "bit_field", 826 "broker_ipc", 827 "cfg-if", 828 "crash_report", 829 "cros_async", 830 "cros_tracing", 831 "crosvm_cli", 832 "crosvm_plugin", 833 "ctrlc", 834 "devices", 835 "disk", 836 "document-features", 837 "enumn", 838 "ext2", 839 "futures", 840 "gdbstub", 841 "gdbstub_arch", 842 "gpu_display", 843 "hypervisor", 844 "jail", 845 "kernel_cmdline", 846 "kernel_loader", 847 "kvm", 848 "kvm_sys", 849 "libc", 850 "libcras", 851 "log", 852 "merge", 853 "metrics", 854 "metrics_events", 855 "minijail", 856 "net_util", 857 "once_cell", 858 "p9", 859 "protobuf", 860 "protos", 861 "rand", 862 "remain", 863 "resources", 864 "riscv64", 865 "rutabaga_gfx", 866 "sandbox", 867 "scudo", 868 "serde", 869 "serde_json", 870 "serde_keyvalue", 871 "smallvec", 872 "static_assertions", 873 "swap", 874 "sync", 875 "tempfile", 876 "thiserror", 877 "tube_transporter", 878 "uuid", 879 "vhost", 880 "vm_control", 881 "vm_memory", 882 "vmm_vhost", 883 "win_audio", 884 "win_util", 885 "winapi", 886 "x86_64", 887 "zerocopy", 888] 889 890[[package]] 891name = "crosvm-fuzz" 892version = "0.0.1" 893dependencies = [ 894 "base", 895 "cfg-if", 896 "devices", 897 "disk", 898 "fuse", 899 "hypervisor", 900 "kernel_loader", 901 "libc", 902 "libfuzzer-sys", 903 "p9", 904 "rand", 905 "rand_core", 906 "tempfile", 907 "usb_util", 908 "vm_memory", 909] 910 911[[package]] 912name = "crosvm_cli" 913version = "0.1.0" 914dependencies = [ 915 "anyhow", 916 "cfg-if", 917 "win_util", 918 "winapi", 919] 920 921[[package]] 922name = "crosvm_control" 923version = "0.1.0" 924dependencies = [ 925 "anyhow", 926 "balloon_control", 927 "base", 928 "cbindgen", 929 "cc", 930 "libc", 931 "swap", 932 "tempfile", 933 "vm_control", 934] 935 936[[package]] 937name = "crosvm_plugin" 938version = "0.17.0" 939dependencies = [ 940 "base", 941 "kvm", 942 "kvm_sys", 943 "libc", 944 "protobuf", 945 "protos", 946] 947 948[[package]] 949name = "crunchy" 950version = "0.2.2" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 953 954[[package]] 955name = "crypto_generic" 956version = "0.1.0" 957dependencies = [ 958 "anyhow", 959 "base", 960 "serde", 961 "serde_json", 962 "tempfile", 963 "zeroize", 964] 965 966[[package]] 967name = "ctrlc" 968version = "3.2.5" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "bbcf33c2a618cbe41ee43ae6e9f2e48368cd9f9db2896f10167d8d762679f639" 971dependencies = [ 972 "nix 0.26.2", 973 "windows-sys 0.45.0", 974] 975 976[[package]] 977name = "data_model" 978version = "0.1.1-alpha.1" 979dependencies = [ 980 "serde", 981 "zerocopy", 982] 983 984[[package]] 985name = "dbus" 986version = "0.9.7" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 989dependencies = [ 990 "libc", 991 "libdbus-sys", 992 "winapi", 993] 994 995[[package]] 996name = "delegate" 997version = "0.1.0" 998dependencies = [ 999 "serde", 1000 "serde_json", 1001] 1002 1003[[package]] 1004name = "derive-into-owned" 1005version = "0.1.0" 1006source = "registry+https://github.com/rust-lang/crates.io-index" 1007checksum = "576fce04d31d592013a5887ba8d9c3830adff329e5096d7e1eb5e8e61262ca62" 1008dependencies = [ 1009 "quote 0.3.15", 1010 "syn 0.11.11", 1011] 1012 1013[[package]] 1014name = "devices" 1015version = "0.1.0" 1016dependencies = [ 1017 "acpi_tables", 1018 "android_audio", 1019 "anyhow", 1020 "argh", 1021 "async-task", 1022 "async-trait", 1023 "audio_streams", 1024 "audio_util", 1025 "balloon_control", 1026 "base", 1027 "bit_field", 1028 "broker_ipc", 1029 "bytes", 1030 "cfg-if", 1031 "chrono", 1032 "crc32fast", 1033 "cros-codecs", 1034 "cros_async", 1035 "cros_tracing", 1036 "crosvm_cli", 1037 "data_model", 1038 "dbus", 1039 "disk", 1040 "downcast-rs", 1041 "enumn", 1042 "ffmpeg", 1043 "fuse", 1044 "futures", 1045 "gpu_display", 1046 "hypervisor", 1047 "jail", 1048 "kvm_sys", 1049 "libc", 1050 "libcras", 1051 "libtest-mimic", 1052 "libvda", 1053 "linux_input_sys", 1054 "metrics", 1055 "minijail", 1056 "named-lock", 1057 "net_sys", 1058 "net_util", 1059 "num-traits", 1060 "once_cell", 1061 "p9", 1062 "power_monitor", 1063 "protobuf", 1064 "protos", 1065 "rand", 1066 "remain", 1067 "resources", 1068 "rutabaga_gfx", 1069 "serde", 1070 "serde_json", 1071 "serde_keyvalue", 1072 "smallvec", 1073 "swap", 1074 "sync", 1075 "system_api", 1076 "tempfile", 1077 "thiserror", 1078 "tube_transporter", 1079 "usb_util", 1080 "vfio_sys", 1081 "vhost", 1082 "virtio-media", 1083 "virtio_sys", 1084 "vm_control", 1085 "vm_memory", 1086 "vmm_vhost", 1087 "win_audio", 1088 "win_util", 1089 "winapi", 1090 "zerocopy", 1091] 1092 1093[[package]] 1094name = "disk" 1095version = "0.1.0" 1096dependencies = [ 1097 "anyhow", 1098 "async-trait", 1099 "base", 1100 "cfg-if", 1101 "crc32fast", 1102 "cros_async", 1103 "data_model", 1104 "futures", 1105 "libc", 1106 "protobuf", 1107 "protos", 1108 "remain", 1109 "serde", 1110 "sync", 1111 "tempfile", 1112 "thiserror", 1113 "uuid", 1114 "vm_memory", 1115 "winapi", 1116 "zerocopy", 1117 "zstd", 1118] 1119 1120[[package]] 1121name = "document-features" 1122version = "0.2.6" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "c3267e1ade4f1f6ddd35fed44a04b6514e244ffeda90c6a14a9ee30f9c9fd7a1" 1125dependencies = [ 1126 "litrs", 1127] 1128 1129[[package]] 1130name = "downcast-rs" 1131version = "1.2.1" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 1134 1135[[package]] 1136name = "e2e_tests" 1137version = "0.1.0" 1138dependencies = [ 1139 "anyhow", 1140 "base", 1141 "fixture", 1142 "libc", 1143 "net_sys", 1144 "net_util", 1145 "prebuilts", 1146 "rand", 1147 "readclock", 1148 "serde_json", 1149 "swap", 1150 "tempfile", 1151] 1152 1153[[package]] 1154name = "either" 1155version = "1.7.0" 1156source = "registry+https://github.com/rust-lang/crates.io-index" 1157checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" 1158 1159[[package]] 1160name = "enumn" 1161version = "0.1.13" 1162source = "registry+https://github.com/rust-lang/crates.io-index" 1163checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" 1164dependencies = [ 1165 "proc-macro2", 1166 "quote 1.0.36", 1167 "syn 2.0.77", 1168] 1169 1170[[package]] 1171name = "env_logger" 1172version = "0.9.0" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 1175dependencies = [ 1176 "log", 1177] 1178 1179[[package]] 1180name = "equivalent" 1181version = "1.0.1" 1182source = "registry+https://github.com/rust-lang/crates.io-index" 1183checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1184 1185[[package]] 1186name = "errno" 1187version = "0.2.8" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1190dependencies = [ 1191 "errno-dragonfly", 1192 "libc", 1193 "winapi", 1194] 1195 1196[[package]] 1197name = "errno-dragonfly" 1198version = "0.1.2" 1199source = "registry+https://github.com/rust-lang/crates.io-index" 1200checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1201dependencies = [ 1202 "cc", 1203 "libc", 1204] 1205 1206[[package]] 1207name = "euclid" 1208version = "0.22.7" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "b52c2ef4a78da0ba68fbe1fd920627411096d2ac478f7f4c9f3a54ba6705bade" 1211dependencies = [ 1212 "num-traits", 1213] 1214 1215[[package]] 1216name = "ext2" 1217version = "0.1.0" 1218dependencies = [ 1219 "anyhow", 1220 "argh", 1221 "base", 1222 "enumn", 1223 "libc", 1224 "tempfile", 1225 "uuid", 1226 "walkdir", 1227 "zerocopy", 1228 "zerocopy-derive", 1229] 1230 1231[[package]] 1232name = "fastrand" 1233version = "1.8.0" 1234source = "registry+https://github.com/rust-lang/crates.io-index" 1235checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1236dependencies = [ 1237 "instant", 1238] 1239 1240[[package]] 1241name = "ffmpeg" 1242version = "0.1.0" 1243dependencies = [ 1244 "anyhow", 1245 "bindgen 0.63.0", 1246 "libc", 1247 "pkg-config", 1248 "thiserror", 1249] 1250 1251[[package]] 1252name = "fixture" 1253version = "0.1.0" 1254dependencies = [ 1255 "anyhow", 1256 "arch", 1257 "base", 1258 "cfg-if", 1259 "crc32fast", 1260 "delegate", 1261 "libc", 1262 "log", 1263 "prebuilts", 1264 "rand", 1265 "readclock", 1266 "serde", 1267 "serde_json", 1268 "shlex", 1269 "tempfile", 1270 "url", 1271] 1272 1273[[package]] 1274name = "fnv" 1275version = "1.0.7" 1276source = "registry+https://github.com/rust-lang/crates.io-index" 1277checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1278 1279[[package]] 1280name = "foreign-types" 1281version = "0.3.2" 1282source = "registry+https://github.com/rust-lang/crates.io-index" 1283checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1284dependencies = [ 1285 "foreign-types-shared", 1286] 1287 1288[[package]] 1289name = "foreign-types-shared" 1290version = "0.1.1" 1291source = "registry+https://github.com/rust-lang/crates.io-index" 1292checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1293 1294[[package]] 1295name = "form_urlencoded" 1296version = "1.1.0" 1297source = "registry+https://github.com/rust-lang/crates.io-index" 1298checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1299dependencies = [ 1300 "percent-encoding", 1301] 1302 1303[[package]] 1304name = "fuse" 1305version = "0.1.0" 1306dependencies = [ 1307 "base", 1308 "bitflags 2.4.0", 1309 "cros_tracing", 1310 "crossbeam-utils", 1311 "enumn", 1312 "libc", 1313 "remain", 1314 "thiserror", 1315 "zerocopy", 1316] 1317 1318[[package]] 1319name = "futures" 1320version = "0.3.21" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 1323dependencies = [ 1324 "futures-channel", 1325 "futures-core", 1326 "futures-executor", 1327 "futures-io", 1328 "futures-sink", 1329 "futures-task", 1330 "futures-util", 1331] 1332 1333[[package]] 1334name = "futures-channel" 1335version = "0.3.21" 1336source = "registry+https://github.com/rust-lang/crates.io-index" 1337checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 1338dependencies = [ 1339 "futures-core", 1340 "futures-sink", 1341] 1342 1343[[package]] 1344name = "futures-core" 1345version = "0.3.21" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 1348 1349[[package]] 1350name = "futures-executor" 1351version = "0.3.21" 1352source = "registry+https://github.com/rust-lang/crates.io-index" 1353checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 1354dependencies = [ 1355 "futures-core", 1356 "futures-task", 1357 "futures-util", 1358 "num_cpus", 1359] 1360 1361[[package]] 1362name = "futures-io" 1363version = "0.3.21" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 1366 1367[[package]] 1368name = "futures-macro" 1369version = "0.3.21" 1370source = "registry+https://github.com/rust-lang/crates.io-index" 1371checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 1372dependencies = [ 1373 "proc-macro2", 1374 "quote 1.0.36", 1375 "syn 1.0.103", 1376] 1377 1378[[package]] 1379name = "futures-sink" 1380version = "0.3.21" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 1383 1384[[package]] 1385name = "futures-task" 1386version = "0.3.21" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 1389 1390[[package]] 1391name = "futures-util" 1392version = "0.3.21" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 1395dependencies = [ 1396 "futures-channel", 1397 "futures-core", 1398 "futures-io", 1399 "futures-macro", 1400 "futures-sink", 1401 "futures-task", 1402 "memchr", 1403 "pin-project-lite", 1404 "pin-utils", 1405 "slab", 1406] 1407 1408[[package]] 1409name = "gdbstub" 1410version = "0.7.0" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "09a8b954f9d02b74fe8e89a1c77bd9a6b8206713ebf1b272bfad9573b4a86f88" 1413dependencies = [ 1414 "bitflags 2.4.0", 1415 "cfg-if", 1416 "log", 1417 "managed", 1418 "num-traits", 1419 "paste", 1420] 1421 1422[[package]] 1423name = "gdbstub_arch" 1424version = "0.3.0" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "4e3b1357bd3203fc09a6601327ae0ab38865d14231d0b65d3143f5762cc7977d" 1427dependencies = [ 1428 "gdbstub", 1429 "num-traits", 1430] 1431 1432[[package]] 1433name = "getrandom" 1434version = "0.2.7" 1435source = "registry+https://github.com/rust-lang/crates.io-index" 1436checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 1437dependencies = [ 1438 "cfg-if", 1439 "libc", 1440 "wasi", 1441] 1442 1443[[package]] 1444name = "gimli" 1445version = "0.28.1" 1446source = "registry+https://github.com/rust-lang/crates.io-index" 1447checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1448 1449[[package]] 1450name = "glob" 1451version = "0.3.0" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1454 1455[[package]] 1456name = "gpu_display" 1457version = "0.1.0" 1458dependencies = [ 1459 "anyhow", 1460 "ash", 1461 "base", 1462 "cc", 1463 "cfg-if", 1464 "cros_tracing", 1465 "euclid", 1466 "libc", 1467 "linux_input_sys", 1468 "metrics", 1469 "num-traits", 1470 "pkg-config", 1471 "protobuf", 1472 "protos", 1473 "rand", 1474 "remain", 1475 "serde", 1476 "smallvec", 1477 "sync", 1478 "thiserror", 1479 "vm_control", 1480 "vulkano", 1481 "which", 1482 "win_util", 1483 "winapi", 1484 "zerocopy", 1485] 1486 1487[[package]] 1488name = "half" 1489version = "2.1.0" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "ad6a9459c9c30b177b925162351f97e7d967c7ea8bab3b8352805327daf45554" 1492dependencies = [ 1493 "crunchy", 1494] 1495 1496[[package]] 1497name = "hashbrown" 1498version = "0.12.3" 1499source = "registry+https://github.com/rust-lang/crates.io-index" 1500checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1501 1502[[package]] 1503name = "hashbrown" 1504version = "0.15.0" 1505source = "registry+https://github.com/rust-lang/crates.io-index" 1506checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 1507 1508[[package]] 1509name = "heck" 1510version = "0.4.0" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1513 1514[[package]] 1515name = "hermit-abi" 1516version = "0.1.19" 1517source = "registry+https://github.com/rust-lang/crates.io-index" 1518checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1519dependencies = [ 1520 "libc", 1521] 1522 1523[[package]] 1524name = "hermit-abi" 1525version = "0.3.1" 1526source = "registry+https://github.com/rust-lang/crates.io-index" 1527checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1528 1529[[package]] 1530name = "hypervisor" 1531version = "0.1.0" 1532dependencies = [ 1533 "anyhow", 1534 "base", 1535 "bit_field", 1536 "bitflags 2.4.0", 1537 "cros_fdt", 1538 "data_model", 1539 "downcast-rs", 1540 "enumn", 1541 "fnv", 1542 "hypervisor_test_macro", 1543 "kvm_sys", 1544 "libc", 1545 "once_cell", 1546 "serde", 1547 "serde_json", 1548 "sync", 1549 "tempfile", 1550 "thiserror", 1551 "vm_memory", 1552 "win_util", 1553 "winapi", 1554 "windows", 1555 "zerocopy", 1556] 1557 1558[[package]] 1559name = "hypervisor_test_macro" 1560version = "0.1.0" 1561dependencies = [ 1562 "proc-macro2", 1563 "quote 1.0.36", 1564 "rand", 1565 "syn 2.0.77", 1566] 1567 1568[[package]] 1569name = "idna" 1570version = "0.3.0" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1573dependencies = [ 1574 "unicode-bidi", 1575 "unicode-normalization", 1576] 1577 1578[[package]] 1579name = "indexmap" 1580version = "1.9.1" 1581source = "registry+https://github.com/rust-lang/crates.io-index" 1582checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1583dependencies = [ 1584 "autocfg", 1585 "hashbrown 0.12.3", 1586] 1587 1588[[package]] 1589name = "indexmap" 1590version = "2.6.0" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 1593dependencies = [ 1594 "equivalent", 1595 "hashbrown 0.15.0", 1596] 1597 1598[[package]] 1599name = "instant" 1600version = "0.1.12" 1601source = "registry+https://github.com/rust-lang/crates.io-index" 1602checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1603dependencies = [ 1604 "cfg-if", 1605] 1606 1607[[package]] 1608name = "intrusive-collections" 1609version = "0.9.6" 1610source = "registry+https://github.com/rust-lang/crates.io-index" 1611checksum = "b694dc9f70c3bda874626d2aed13b780f137aab435f4e9814121955cf706122e" 1612dependencies = [ 1613 "memoffset 0.9.0", 1614] 1615 1616[[package]] 1617name = "io-lifetimes" 1618version = "1.0.5" 1619source = "registry+https://github.com/rust-lang/crates.io-index" 1620checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 1621dependencies = [ 1622 "libc", 1623 "windows-sys 0.45.0", 1624] 1625 1626[[package]] 1627name = "io_uring" 1628version = "0.1.1" 1629dependencies = [ 1630 "base", 1631 "libc", 1632 "remain", 1633 "sync", 1634 "tempfile", 1635 "thiserror", 1636] 1637 1638[[package]] 1639name = "is-terminal" 1640version = "0.4.4" 1641source = "registry+https://github.com/rust-lang/crates.io-index" 1642checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" 1643dependencies = [ 1644 "hermit-abi 0.3.1", 1645 "io-lifetimes", 1646 "rustix", 1647 "windows-sys 0.45.0", 1648] 1649 1650[[package]] 1651name = "itertools" 1652version = "0.12.1" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1655dependencies = [ 1656 "either", 1657] 1658 1659[[package]] 1660name = "itoa" 1661version = "1.0.2" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 1664 1665[[package]] 1666name = "jail" 1667version = "0.1.0" 1668dependencies = [ 1669 "anyhow", 1670 "base", 1671 "cfg-if", 1672 "libc", 1673 "libtest-mimic", 1674 "log", 1675 "minijail", 1676 "once_cell", 1677 "rayon", 1678 "serde", 1679 "serde_keyvalue", 1680 "static_assertions", 1681 "which", 1682 "zerocopy", 1683] 1684 1685[[package]] 1686name = "jobserver" 1687version = "0.1.24" 1688source = "registry+https://github.com/rust-lang/crates.io-index" 1689checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" 1690dependencies = [ 1691 "libc", 1692] 1693 1694[[package]] 1695name = "kernel_cmdline" 1696version = "0.1.0" 1697dependencies = [ 1698 "libc", 1699 "remain", 1700 "thiserror", 1701] 1702 1703[[package]] 1704name = "kernel_loader" 1705version = "0.1.0" 1706dependencies = [ 1707 "base", 1708 "data_model", 1709 "libc", 1710 "lz4_flex", 1711 "remain", 1712 "resources", 1713 "tempfile", 1714 "thiserror", 1715 "vm_memory", 1716 "zerocopy", 1717] 1718 1719[[package]] 1720name = "kvm" 1721version = "0.1.0" 1722dependencies = [ 1723 "base", 1724 "data_model", 1725 "kvm_sys", 1726 "libc", 1727 "sync", 1728 "vm_memory", 1729] 1730 1731[[package]] 1732name = "kvm_sys" 1733version = "0.1.0" 1734dependencies = [ 1735 "base", 1736 "data_model", 1737 "libc", 1738 "zerocopy", 1739] 1740 1741[[package]] 1742name = "lazy_static" 1743version = "1.4.0" 1744source = "registry+https://github.com/rust-lang/crates.io-index" 1745checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1746 1747[[package]] 1748name = "lazycell" 1749version = "1.3.0" 1750source = "registry+https://github.com/rust-lang/crates.io-index" 1751checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1752 1753[[package]] 1754name = "libc" 1755version = "0.2.161" 1756source = "registry+https://github.com/rust-lang/crates.io-index" 1757checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 1758 1759[[package]] 1760name = "libcras" 1761version = "0.1.0" 1762dependencies = [ 1763 "audio_streams", 1764 "serde", 1765] 1766 1767[[package]] 1768name = "libdbus-sys" 1769version = "0.2.5" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 1772dependencies = [ 1773 "pkg-config", 1774] 1775 1776[[package]] 1777name = "libfuzzer-sys" 1778version = "0.4.4" 1779source = "registry+https://github.com/rust-lang/crates.io-index" 1780checksum = "ae185684fe19814afd066da15a7cc41e126886c21282934225d9fc847582da58" 1781dependencies = [ 1782 "arbitrary", 1783 "cc", 1784 "once_cell", 1785] 1786 1787[[package]] 1788name = "libloading" 1789version = "0.7.3" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" 1792dependencies = [ 1793 "cfg-if", 1794 "winapi", 1795] 1796 1797[[package]] 1798name = "libslirp-sys" 1799version = "4.2.1" 1800source = "registry+https://github.com/rust-lang/crates.io-index" 1801checksum = "2772370ce9b7fa05c7eae0bd033005e139a64d52cee498a7905b3eb5d243c5f4" 1802dependencies = [ 1803 "pkg-config", 1804] 1805 1806[[package]] 1807name = "libtest-mimic" 1808version = "0.6.0" 1809source = "registry+https://github.com/rust-lang/crates.io-index" 1810checksum = "d7b603516767d1ab23d0de09d023e62966c3322f7148297c35cf3d97aa8b37fa" 1811dependencies = [ 1812 "clap 4.1.8", 1813 "termcolor", 1814 "threadpool", 1815] 1816 1817[[package]] 1818name = "libvda" 1819version = "0.1.0" 1820dependencies = [ 1821 "enumn", 1822 "libc", 1823 "pkg-config", 1824] 1825 1826[[package]] 1827name = "linux-raw-sys" 1828version = "0.1.4" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1831 1832[[package]] 1833name = "linux_input_sys" 1834version = "0.1.0" 1835dependencies = [ 1836 "base", 1837 "data_model", 1838 "libc", 1839 "zerocopy", 1840] 1841 1842[[package]] 1843name = "litrs" 1844version = "0.2.3" 1845source = "registry+https://github.com/rust-lang/crates.io-index" 1846checksum = "f9275e0933cf8bb20f008924c0cb07a0692fe54d8064996520bf998de9eb79aa" 1847 1848[[package]] 1849name = "lock_api" 1850version = "0.4.9" 1851source = "registry+https://github.com/rust-lang/crates.io-index" 1852checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1853dependencies = [ 1854 "autocfg", 1855 "scopeguard", 1856] 1857 1858[[package]] 1859name = "log" 1860version = "0.4.21" 1861source = "registry+https://github.com/rust-lang/crates.io-index" 1862checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1863 1864[[package]] 1865name = "lz4_flex" 1866version = "0.11.1" 1867source = "registry+https://github.com/rust-lang/crates.io-index" 1868checksum = "3ea9b256699eda7b0387ffbc776dd625e28bde3918446381781245b7a50349d8" 1869dependencies = [ 1870 "twox-hash", 1871] 1872 1873[[package]] 1874name = "malloc_buf" 1875version = "0.0.6" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1878dependencies = [ 1879 "libc", 1880] 1881 1882[[package]] 1883name = "managed" 1884version = "0.8.0" 1885source = "registry+https://github.com/rust-lang/crates.io-index" 1886checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d" 1887 1888[[package]] 1889name = "memchr" 1890version = "2.5.0" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1893 1894[[package]] 1895name = "memoffset" 1896version = "0.8.0" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1899dependencies = [ 1900 "autocfg", 1901] 1902 1903[[package]] 1904name = "memoffset" 1905version = "0.9.0" 1906source = "registry+https://github.com/rust-lang/crates.io-index" 1907checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1908dependencies = [ 1909 "autocfg", 1910] 1911 1912[[package]] 1913name = "merge" 1914version = "0.1.0" 1915source = "registry+https://github.com/rust-lang/crates.io-index" 1916checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9" 1917dependencies = [ 1918 "merge_derive", 1919 "num-traits", 1920] 1921 1922[[package]] 1923name = "merge_derive" 1924version = "0.1.0" 1925source = "registry+https://github.com/rust-lang/crates.io-index" 1926checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07" 1927dependencies = [ 1928 "proc-macro-error", 1929 "proc-macro2", 1930 "quote 1.0.36", 1931 "syn 1.0.103", 1932] 1933 1934[[package]] 1935name = "metrics" 1936version = "0.1.0" 1937dependencies = [ 1938 "anyhow", 1939 "base", 1940 "cfg-if", 1941 "chrono", 1942 "metrics_events", 1943 "metrics_generic", 1944 "serde", 1945 "sync", 1946 "winapi", 1947] 1948 1949[[package]] 1950name = "metrics_events" 1951version = "0.1.0" 1952dependencies = [ 1953 "anyhow", 1954 "cfg-if", 1955 "metrics_events_generic", 1956 "serde", 1957 "win_util", 1958] 1959 1960[[package]] 1961name = "metrics_events_generic" 1962version = "0.1.0" 1963dependencies = [ 1964 "serde", 1965] 1966 1967[[package]] 1968name = "metrics_generic" 1969version = "0.1.0" 1970dependencies = [ 1971 "anyhow", 1972 "base", 1973 "metrics_events", 1974] 1975 1976[[package]] 1977name = "minijail" 1978version = "0.2.3" 1979dependencies = [ 1980 "libc", 1981 "minijail-sys", 1982] 1983 1984[[package]] 1985name = "minijail-sys" 1986version = "0.0.14" 1987dependencies = [ 1988 "bindgen 0.63.0", 1989 "libc", 1990 "pkg-config", 1991 "which", 1992] 1993 1994[[package]] 1995name = "minimal-lexical" 1996version = "0.2.1" 1997source = "registry+https://github.com/rust-lang/crates.io-index" 1998checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1999 2000[[package]] 2001name = "miniz_oxide" 2002version = "0.7.2" 2003source = "registry+https://github.com/rust-lang/crates.io-index" 2004checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 2005dependencies = [ 2006 "adler", 2007] 2008 2009[[package]] 2010name = "mio" 2011version = "0.8.11" 2012source = "registry+https://github.com/rust-lang/crates.io-index" 2013checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2014dependencies = [ 2015 "libc", 2016 "wasi", 2017 "windows-sys 0.48.0", 2018] 2019 2020[[package]] 2021name = "named-lock" 2022version = "0.3.0" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "0b4a84f3731e71a5792fca72324356bf700c8959d31a2ac34134b25989f254c3" 2025dependencies = [ 2026 "libc", 2027 "once_cell", 2028 "parking_lot", 2029 "thiserror", 2030 "widestring", 2031 "winapi", 2032] 2033 2034[[package]] 2035name = "net_sys" 2036version = "0.1.0" 2037dependencies = [ 2038 "base", 2039 "libc", 2040] 2041 2042[[package]] 2043name = "net_util" 2044version = "0.1.0" 2045dependencies = [ 2046 "anyhow", 2047 "base", 2048 "cfg-if", 2049 "cros_async", 2050 "libc", 2051 "libslirp-sys", 2052 "metrics", 2053 "net_sys", 2054 "pcap-file", 2055 "prebuilts", 2056 "remain", 2057 "serde", 2058 "serde_json", 2059 "smallvec", 2060 "thiserror", 2061 "virtio_sys", 2062 "winapi", 2063 "zerocopy", 2064] 2065 2066[[package]] 2067name = "nix" 2068version = "0.26.2" 2069source = "registry+https://github.com/rust-lang/crates.io-index" 2070checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 2071dependencies = [ 2072 "bitflags 1.3.2", 2073 "cfg-if", 2074 "libc", 2075 "static_assertions", 2076] 2077 2078[[package]] 2079name = "nix" 2080version = "0.27.1" 2081source = "registry+https://github.com/rust-lang/crates.io-index" 2082checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2083dependencies = [ 2084 "bitflags 2.4.0", 2085 "cfg-if", 2086 "libc", 2087] 2088 2089[[package]] 2090name = "nix" 2091version = "0.28.0" 2092source = "registry+https://github.com/rust-lang/crates.io-index" 2093checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 2094dependencies = [ 2095 "bitflags 2.4.0", 2096 "cfg-if", 2097 "cfg_aliases", 2098 "libc", 2099 "memoffset 0.9.0", 2100] 2101 2102[[package]] 2103name = "nom" 2104version = "7.1.1" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" 2107dependencies = [ 2108 "memchr", 2109 "minimal-lexical", 2110] 2111 2112[[package]] 2113name = "num-traits" 2114version = "0.2.15" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2117dependencies = [ 2118 "autocfg", 2119] 2120 2121[[package]] 2122name = "num_cpus" 2123version = "1.13.1" 2124source = "registry+https://github.com/rust-lang/crates.io-index" 2125checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 2126dependencies = [ 2127 "hermit-abi 0.1.19", 2128 "libc", 2129] 2130 2131[[package]] 2132name = "objc" 2133version = "0.2.7" 2134source = "registry+https://github.com/rust-lang/crates.io-index" 2135checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2136dependencies = [ 2137 "malloc_buf", 2138] 2139 2140[[package]] 2141name = "object" 2142version = "0.32.2" 2143source = "registry+https://github.com/rust-lang/crates.io-index" 2144checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2145dependencies = [ 2146 "memchr", 2147] 2148 2149[[package]] 2150name = "once_cell" 2151version = "1.17.0" 2152source = "registry+https://github.com/rust-lang/crates.io-index" 2153checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 2154 2155[[package]] 2156name = "openssl" 2157version = "0.10.51" 2158source = "registry+https://github.com/rust-lang/crates.io-index" 2159checksum = "97ea2d98598bf9ada7ea6ee8a30fb74f9156b63bbe495d64ec2b87c269d2dda3" 2160dependencies = [ 2161 "bitflags 1.3.2", 2162 "cfg-if", 2163 "foreign-types", 2164 "libc", 2165 "once_cell", 2166 "openssl-macros", 2167 "openssl-sys", 2168] 2169 2170[[package]] 2171name = "openssl-macros" 2172version = "0.1.0" 2173source = "registry+https://github.com/rust-lang/crates.io-index" 2174checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2175dependencies = [ 2176 "proc-macro2", 2177 "quote 1.0.36", 2178 "syn 1.0.103", 2179] 2180 2181[[package]] 2182name = "openssl-sys" 2183version = "0.9.86" 2184source = "registry+https://github.com/rust-lang/crates.io-index" 2185checksum = "992bac49bdbab4423199c654a5515bd2a6c6a23bf03f2dd3bdb7e5ae6259bc69" 2186dependencies = [ 2187 "cc", 2188 "libc", 2189 "pkg-config", 2190 "vcpkg", 2191] 2192 2193[[package]] 2194name = "os_str_bytes" 2195version = "6.4.1" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2198 2199[[package]] 2200name = "p9" 2201version = "0.2.3" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "4838a2d89bdcbcad051f18347ed6cbe3e5b9b09fb0019e1a6ec4bb2bb1d29481" 2204dependencies = [ 2205 "libc", 2206 "p9_wire_format_derive", 2207 "serde", 2208] 2209 2210[[package]] 2211name = "p9_wire_format_derive" 2212version = "0.2.3" 2213source = "registry+https://github.com/rust-lang/crates.io-index" 2214checksum = "e6085210d8ec9bcbdf38b5c8e97bccef1877f3f291eae48b65388ca979f5314e" 2215dependencies = [ 2216 "proc-macro2", 2217 "quote 1.0.36", 2218 "syn 1.0.103", 2219] 2220 2221[[package]] 2222name = "parking_lot" 2223version = "0.12.1" 2224source = "registry+https://github.com/rust-lang/crates.io-index" 2225checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2226dependencies = [ 2227 "lock_api", 2228 "parking_lot_core", 2229] 2230 2231[[package]] 2232name = "parking_lot_core" 2233version = "0.9.6" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 2236dependencies = [ 2237 "cfg-if", 2238 "libc", 2239 "redox_syscall", 2240 "smallvec", 2241 "windows-sys 0.42.0", 2242] 2243 2244[[package]] 2245name = "paste" 2246version = "1.0.7" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc" 2249 2250[[package]] 2251name = "pcap-file" 2252version = "1.1.1" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "6ad13fed1a83120159aea81b265074f21d753d157dd16b10cc3790ecba40a341" 2255dependencies = [ 2256 "byteorder", 2257 "derive-into-owned", 2258 "thiserror", 2259] 2260 2261[[package]] 2262name = "peeking_take_while" 2263version = "0.1.2" 2264source = "registry+https://github.com/rust-lang/crates.io-index" 2265checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 2266 2267[[package]] 2268name = "percent-encoding" 2269version = "2.2.0" 2270source = "registry+https://github.com/rust-lang/crates.io-index" 2271checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2272 2273[[package]] 2274name = "perfetto" 2275version = "0.1.0" 2276dependencies = [ 2277 "anyhow", 2278 "base", 2279 "cfg-if", 2280 "cros_tracing_types", 2281 "openssl", 2282 "proto_build_tools", 2283 "protobuf", 2284 "serde", 2285 "sync", 2286 "zerocopy", 2287] 2288 2289[[package]] 2290name = "pin-project-lite" 2291version = "0.2.13" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2294 2295[[package]] 2296name = "pin-utils" 2297version = "0.1.0" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2300 2301[[package]] 2302name = "pkg-config" 2303version = "0.3.26" 2304source = "registry+https://github.com/rust-lang/crates.io-index" 2305checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2306 2307[[package]] 2308name = "power_monitor" 2309version = "0.1.0" 2310dependencies = [ 2311 "base", 2312 "dbus", 2313 "proto_build_tools", 2314 "protobuf", 2315 "remain", 2316 "system_api", 2317 "thiserror", 2318] 2319 2320[[package]] 2321name = "ppv-lite86" 2322version = "0.2.16" 2323source = "registry+https://github.com/rust-lang/crates.io-index" 2324checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 2325 2326[[package]] 2327name = "prebuilts" 2328version = "0.1.0" 2329dependencies = [ 2330 "anyhow", 2331 "cfg-if", 2332 "named-lock", 2333] 2334 2335[[package]] 2336name = "prettyplease" 2337version = "0.2.22" 2338source = "registry+https://github.com/rust-lang/crates.io-index" 2339checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" 2340dependencies = [ 2341 "proc-macro2", 2342 "syn 2.0.77", 2343] 2344 2345[[package]] 2346name = "proc-macro-error" 2347version = "1.0.4" 2348source = "registry+https://github.com/rust-lang/crates.io-index" 2349checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2350dependencies = [ 2351 "proc-macro-error-attr", 2352 "proc-macro2", 2353 "quote 1.0.36", 2354 "syn 1.0.103", 2355 "version_check", 2356] 2357 2358[[package]] 2359name = "proc-macro-error-attr" 2360version = "1.0.4" 2361source = "registry+https://github.com/rust-lang/crates.io-index" 2362checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2363dependencies = [ 2364 "proc-macro2", 2365 "quote 1.0.36", 2366 "version_check", 2367] 2368 2369[[package]] 2370name = "proc-macro2" 2371version = "1.0.85" 2372source = "registry+https://github.com/rust-lang/crates.io-index" 2373checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" 2374dependencies = [ 2375 "unicode-ident", 2376] 2377 2378[[package]] 2379name = "proto_build_tools" 2380version = "0.1.0" 2381dependencies = [ 2382 "protobuf-codegen", 2383] 2384 2385[[package]] 2386name = "protobuf" 2387version = "3.6.0" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "3018844a02746180074f621e847703737d27d89d7f0721a7a4da317f88b16385" 2390dependencies = [ 2391 "once_cell", 2392 "protobuf-support", 2393 "thiserror", 2394] 2395 2396[[package]] 2397name = "protobuf-codegen" 2398version = "3.6.0" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "411c15a212b4de05eb8bc989fd066a74c86bd3c04e27d6e86bd7703b806d7734" 2401dependencies = [ 2402 "anyhow", 2403 "once_cell", 2404 "protobuf", 2405 "protobuf-parse", 2406 "regex", 2407 "tempfile", 2408 "thiserror", 2409] 2410 2411[[package]] 2412name = "protobuf-parse" 2413version = "3.6.0" 2414source = "registry+https://github.com/rust-lang/crates.io-index" 2415checksum = "06f45f16b522d92336e839b5e40680095a045e36a1e7f742ba682ddc85236772" 2416dependencies = [ 2417 "anyhow", 2418 "indexmap 2.6.0", 2419 "log", 2420 "protobuf", 2421 "protobuf-support", 2422 "tempfile", 2423 "thiserror", 2424 "which", 2425] 2426 2427[[package]] 2428name = "protobuf-support" 2429version = "3.6.0" 2430source = "registry+https://github.com/rust-lang/crates.io-index" 2431checksum = "faf96d872914fcda2b66d66ea3fff2be7c66865d31c7bb2790cff32c0e714880" 2432dependencies = [ 2433 "thiserror", 2434] 2435 2436[[package]] 2437name = "protos" 2438version = "0.1.0" 2439dependencies = [ 2440 "kvm_sys", 2441 "proto_build_tools", 2442 "protobuf", 2443] 2444 2445[[package]] 2446name = "quote" 2447version = "0.3.15" 2448source = "registry+https://github.com/rust-lang/crates.io-index" 2449checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 2450 2451[[package]] 2452name = "quote" 2453version = "1.0.36" 2454source = "registry+https://github.com/rust-lang/crates.io-index" 2455checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 2456dependencies = [ 2457 "proc-macro2", 2458] 2459 2460[[package]] 2461name = "rand" 2462version = "0.8.5" 2463source = "registry+https://github.com/rust-lang/crates.io-index" 2464checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2465dependencies = [ 2466 "libc", 2467 "rand_chacha", 2468 "rand_core", 2469] 2470 2471[[package]] 2472name = "rand_chacha" 2473version = "0.3.1" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2476dependencies = [ 2477 "ppv-lite86", 2478 "rand_core", 2479] 2480 2481[[package]] 2482name = "rand_core" 2483version = "0.6.3" 2484source = "registry+https://github.com/rust-lang/crates.io-index" 2485checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2486dependencies = [ 2487 "getrandom", 2488] 2489 2490[[package]] 2491name = "rayon" 2492version = "1.7.0" 2493source = "registry+https://github.com/rust-lang/crates.io-index" 2494checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 2495dependencies = [ 2496 "either", 2497 "rayon-core", 2498] 2499 2500[[package]] 2501name = "rayon-core" 2502version = "1.11.0" 2503source = "registry+https://github.com/rust-lang/crates.io-index" 2504checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 2505dependencies = [ 2506 "crossbeam-channel", 2507 "crossbeam-deque", 2508 "crossbeam-utils", 2509 "num_cpus", 2510] 2511 2512[[package]] 2513name = "readclock" 2514version = "0.1.0" 2515dependencies = [ 2516 "anyhow", 2517 "libc", 2518 "serde", 2519 "serde_json", 2520] 2521 2522[[package]] 2523name = "redox_syscall" 2524version = "0.2.15" 2525source = "registry+https://github.com/rust-lang/crates.io-index" 2526checksum = "534cfe58d6a18cc17120fbf4635d53d14691c1fe4d951064df9bd326178d7d5a" 2527dependencies = [ 2528 "bitflags 1.3.2", 2529] 2530 2531[[package]] 2532name = "regex" 2533version = "1.6.0" 2534source = "registry+https://github.com/rust-lang/crates.io-index" 2535checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 2536dependencies = [ 2537 "aho-corasick", 2538 "memchr", 2539 "regex-syntax", 2540] 2541 2542[[package]] 2543name = "regex-syntax" 2544version = "0.6.27" 2545source = "registry+https://github.com/rust-lang/crates.io-index" 2546checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 2547 2548[[package]] 2549name = "remain" 2550version = "0.2.6" 2551source = "registry+https://github.com/rust-lang/crates.io-index" 2552checksum = "5704e2cda92fd54202f05430725317ba0ea7d0c96b246ca0a92e45177127ba3b" 2553dependencies = [ 2554 "proc-macro2", 2555 "quote 1.0.36", 2556 "syn 1.0.103", 2557] 2558 2559[[package]] 2560name = "remove_dir_all" 2561version = "0.5.3" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2564dependencies = [ 2565 "winapi", 2566] 2567 2568[[package]] 2569name = "resources" 2570version = "0.1.0" 2571dependencies = [ 2572 "base", 2573 "libc", 2574 "remain", 2575 "serde", 2576 "thiserror", 2577] 2578 2579[[package]] 2580name = "riscv64" 2581version = "0.1.0" 2582dependencies = [ 2583 "arch", 2584 "base", 2585 "cros_fdt", 2586 "devices", 2587 "gdbstub", 2588 "gdbstub_arch", 2589 "hypervisor", 2590 "kernel_cmdline", 2591 "libc", 2592 "minijail", 2593 "rand", 2594 "remain", 2595 "resources", 2596 "sync", 2597 "thiserror", 2598 "vm_control", 2599 "vm_memory", 2600] 2601 2602[[package]] 2603name = "rustc-demangle" 2604version = "0.1.23" 2605source = "registry+https://github.com/rust-lang/crates.io-index" 2606checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2607 2608[[package]] 2609name = "rustc-hash" 2610version = "1.1.0" 2611source = "registry+https://github.com/rust-lang/crates.io-index" 2612checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2613 2614[[package]] 2615name = "rustix" 2616version = "0.36.8" 2617source = "registry+https://github.com/rust-lang/crates.io-index" 2618checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 2619dependencies = [ 2620 "bitflags 1.3.2", 2621 "errno", 2622 "io-lifetimes", 2623 "libc", 2624 "linux-raw-sys", 2625 "windows-sys 0.45.0", 2626] 2627 2628[[package]] 2629name = "rutabaga_gfx" 2630version = "0.1.3" 2631dependencies = [ 2632 "anyhow", 2633 "cfg-if", 2634 "libc", 2635 "log", 2636 "nix 0.28.0", 2637 "pkg-config", 2638 "remain", 2639 "serde", 2640 "serde_json", 2641 "thiserror", 2642 "winapi", 2643 "zerocopy", 2644] 2645 2646[[package]] 2647name = "ryu" 2648version = "1.0.10" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 2651 2652[[package]] 2653name = "same-file" 2654version = "1.0.6" 2655source = "registry+https://github.com/rust-lang/crates.io-index" 2656checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2657dependencies = [ 2658 "winapi-util", 2659] 2660 2661[[package]] 2662name = "sandbox" 2663version = "0.1.0" 2664dependencies = [ 2665 "anyhow", 2666 "base", 2667 "prebuilts", 2668 "win_util", 2669 "winapi", 2670] 2671 2672[[package]] 2673name = "scopeguard" 2674version = "1.1.0" 2675source = "registry+https://github.com/rust-lang/crates.io-index" 2676checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2677 2678[[package]] 2679name = "scudo" 2680version = "0.1.3" 2681source = "registry+https://github.com/rust-lang/crates.io-index" 2682checksum = "12bfcb1ca07a487406afea13bdb7a2f3cf88e67b39c20dfd64e1801909b5c688" 2683dependencies = [ 2684 "libc", 2685 "scudo-proc-macros", 2686 "scudo-sys", 2687] 2688 2689[[package]] 2690name = "scudo-proc-macros" 2691version = "0.1.0" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "b3267c900aee8fbc8451235b70c5e2dae96bb19110eabc325be5d5dfed8e7461" 2694dependencies = [ 2695 "proc-macro2", 2696 "quote 1.0.36", 2697 "syn 1.0.103", 2698] 2699 2700[[package]] 2701name = "scudo-sys" 2702version = "0.2.2" 2703source = "registry+https://github.com/rust-lang/crates.io-index" 2704checksum = "bcdbdfb28236bf083b47d0babb07e486bb003ed85011072b023ea4ed27760ddb" 2705dependencies = [ 2706 "cc", 2707 "libc", 2708] 2709 2710[[package]] 2711name = "serde" 2712version = "1.0.140" 2713source = "registry+https://github.com/rust-lang/crates.io-index" 2714checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" 2715dependencies = [ 2716 "serde_derive", 2717] 2718 2719[[package]] 2720name = "serde_derive" 2721version = "1.0.140" 2722source = "registry+https://github.com/rust-lang/crates.io-index" 2723checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" 2724dependencies = [ 2725 "proc-macro2", 2726 "quote 1.0.36", 2727 "syn 1.0.103", 2728] 2729 2730[[package]] 2731name = "serde_json" 2732version = "1.0.82" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" 2735dependencies = [ 2736 "itoa", 2737 "ryu", 2738 "serde", 2739] 2740 2741[[package]] 2742name = "serde_keyvalue" 2743version = "0.1.0" 2744dependencies = [ 2745 "argh", 2746 "nom", 2747 "num-traits", 2748 "remain", 2749 "serde", 2750 "serde_keyvalue_derive", 2751 "thiserror", 2752] 2753 2754[[package]] 2755name = "serde_keyvalue_derive" 2756version = "0.1.0" 2757dependencies = [ 2758 "argh", 2759 "proc-macro2", 2760 "quote 1.0.36", 2761 "syn 2.0.77", 2762] 2763 2764[[package]] 2765name = "shlex" 2766version = "1.3.0" 2767source = "registry+https://github.com/rust-lang/crates.io-index" 2768checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2769 2770[[package]] 2771name = "slab" 2772version = "0.4.7" 2773source = "registry+https://github.com/rust-lang/crates.io-index" 2774checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2775dependencies = [ 2776 "autocfg", 2777] 2778 2779[[package]] 2780name = "smallvec" 2781version = "1.9.0" 2782source = "registry+https://github.com/rust-lang/crates.io-index" 2783checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 2784 2785[[package]] 2786name = "socket2" 2787version = "0.4.10" 2788source = "registry+https://github.com/rust-lang/crates.io-index" 2789checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2790dependencies = [ 2791 "libc", 2792 "winapi", 2793] 2794 2795[[package]] 2796name = "static_assertions" 2797version = "1.1.0" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2800 2801[[package]] 2802name = "strsim" 2803version = "0.10.0" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2806 2807[[package]] 2808name = "swap" 2809version = "0.1.0" 2810dependencies = [ 2811 "anyhow", 2812 "base", 2813 "cfg-if", 2814 "cros_tracing", 2815 "jail", 2816 "libc", 2817 "libtest-mimic", 2818 "metrics", 2819 "num_cpus", 2820 "once_cell", 2821 "remain", 2822 "serde", 2823 "serde_json", 2824 "sync", 2825 "tempfile", 2826 "thiserror", 2827 "userfaultfd", 2828 "userfaultfd-sys", 2829 "vm_memory", 2830] 2831 2832[[package]] 2833name = "syn" 2834version = "0.11.11" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 2837dependencies = [ 2838 "quote 0.3.15", 2839 "synom", 2840 "unicode-xid", 2841] 2842 2843[[package]] 2844name = "syn" 2845version = "1.0.103" 2846source = "registry+https://github.com/rust-lang/crates.io-index" 2847checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 2848dependencies = [ 2849 "proc-macro2", 2850 "quote 1.0.36", 2851 "unicode-ident", 2852] 2853 2854[[package]] 2855name = "syn" 2856version = "2.0.77" 2857source = "registry+https://github.com/rust-lang/crates.io-index" 2858checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" 2859dependencies = [ 2860 "proc-macro2", 2861 "quote 1.0.36", 2862 "unicode-ident", 2863] 2864 2865[[package]] 2866name = "sync" 2867version = "0.1.99" 2868 2869[[package]] 2870name = "synom" 2871version = "0.11.3" 2872source = "registry+https://github.com/rust-lang/crates.io-index" 2873checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 2874dependencies = [ 2875 "unicode-xid", 2876] 2877 2878[[package]] 2879name = "system_api" 2880version = "0.1.0" 2881dependencies = [ 2882 "dbus", 2883 "protobuf", 2884] 2885 2886[[package]] 2887name = "tempfile" 2888version = "3.3.0" 2889source = "registry+https://github.com/rust-lang/crates.io-index" 2890checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2891dependencies = [ 2892 "cfg-if", 2893 "fastrand", 2894 "libc", 2895 "redox_syscall", 2896 "remove_dir_all", 2897 "winapi", 2898] 2899 2900[[package]] 2901name = "termcolor" 2902version = "1.1.3" 2903source = "registry+https://github.com/rust-lang/crates.io-index" 2904checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 2905dependencies = [ 2906 "winapi-util", 2907] 2908 2909[[package]] 2910name = "textwrap" 2911version = "0.16.0" 2912source = "registry+https://github.com/rust-lang/crates.io-index" 2913checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 2914 2915[[package]] 2916name = "thiserror" 2917version = "1.0.38" 2918source = "registry+https://github.com/rust-lang/crates.io-index" 2919checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 2920dependencies = [ 2921 "thiserror-impl", 2922] 2923 2924[[package]] 2925name = "thiserror-impl" 2926version = "1.0.38" 2927source = "registry+https://github.com/rust-lang/crates.io-index" 2928checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 2929dependencies = [ 2930 "proc-macro2", 2931 "quote 1.0.36", 2932 "syn 1.0.103", 2933] 2934 2935[[package]] 2936name = "threadpool" 2937version = "1.8.1" 2938source = "registry+https://github.com/rust-lang/crates.io-index" 2939checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 2940dependencies = [ 2941 "num_cpus", 2942] 2943 2944[[package]] 2945name = "tinyvec" 2946version = "1.6.0" 2947source = "registry+https://github.com/rust-lang/crates.io-index" 2948checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2949dependencies = [ 2950 "tinyvec_macros", 2951] 2952 2953[[package]] 2954name = "tinyvec_macros" 2955version = "0.1.0" 2956source = "registry+https://github.com/rust-lang/crates.io-index" 2957checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2958 2959[[package]] 2960name = "tokio" 2961version = "1.29.1" 2962source = "registry+https://github.com/rust-lang/crates.io-index" 2963checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 2964dependencies = [ 2965 "autocfg", 2966 "backtrace", 2967 "libc", 2968 "mio", 2969 "num_cpus", 2970 "pin-project-lite", 2971 "socket2", 2972 "tokio-macros", 2973 "windows-sys 0.48.0", 2974] 2975 2976[[package]] 2977name = "tokio-macros" 2978version = "2.1.0" 2979source = "registry+https://github.com/rust-lang/crates.io-index" 2980checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2981dependencies = [ 2982 "proc-macro2", 2983 "quote 1.0.36", 2984 "syn 2.0.77", 2985] 2986 2987[[package]] 2988name = "toml" 2989version = "0.5.9" 2990source = "registry+https://github.com/rust-lang/crates.io-index" 2991checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2992dependencies = [ 2993 "serde", 2994] 2995 2996[[package]] 2997name = "tube_transporter" 2998version = "0.1.0" 2999dependencies = [ 3000 "base", 3001 "rand", 3002 "serde", 3003 "serde_json", 3004 "thiserror", 3005 "win_util", 3006 "winapi", 3007] 3008 3009[[package]] 3010name = "twox-hash" 3011version = "1.6.3" 3012source = "registry+https://github.com/rust-lang/crates.io-index" 3013checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 3014dependencies = [ 3015 "cfg-if", 3016 "static_assertions", 3017] 3018 3019[[package]] 3020name = "unicode-bidi" 3021version = "0.3.8" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3024 3025[[package]] 3026name = "unicode-ident" 3027version = "1.0.2" 3028source = "registry+https://github.com/rust-lang/crates.io-index" 3029checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" 3030 3031[[package]] 3032name = "unicode-normalization" 3033version = "0.1.22" 3034source = "registry+https://github.com/rust-lang/crates.io-index" 3035checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3036dependencies = [ 3037 "tinyvec", 3038] 3039 3040[[package]] 3041name = "unicode-xid" 3042version = "0.0.4" 3043source = "registry+https://github.com/rust-lang/crates.io-index" 3044checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 3045 3046[[package]] 3047name = "url" 3048version = "2.3.1" 3049source = "registry+https://github.com/rust-lang/crates.io-index" 3050checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3051dependencies = [ 3052 "form_urlencoded", 3053 "idna", 3054 "percent-encoding", 3055] 3056 3057[[package]] 3058name = "usb_sys" 3059version = "0.1.0" 3060dependencies = [ 3061 "base", 3062] 3063 3064[[package]] 3065name = "usb_util" 3066version = "0.1.0" 3067dependencies = [ 3068 "base", 3069 "data_model", 3070 "libc", 3071 "remain", 3072 "static_assertions", 3073 "sync", 3074 "thiserror", 3075 "usb_sys", 3076 "zerocopy", 3077] 3078 3079[[package]] 3080name = "userfaultfd" 3081version = "0.8.1" 3082source = "registry+https://github.com/rust-lang/crates.io-index" 3083checksum = "18d8b176d4d3e420685e964f87c25df5fdd5b26d7eb0d0e7c892d771f5b81035" 3084dependencies = [ 3085 "bitflags 2.4.0", 3086 "cfg-if", 3087 "libc", 3088 "nix 0.27.1", 3089 "thiserror", 3090 "userfaultfd-sys", 3091] 3092 3093[[package]] 3094name = "userfaultfd-sys" 3095version = "0.5.0" 3096source = "registry+https://github.com/rust-lang/crates.io-index" 3097checksum = "d75595d2a62b7db16bd47f5a1ce14e1fe05ccbe27d6c96721a958e0a027cad41" 3098dependencies = [ 3099 "bindgen 0.68.1", 3100 "cc", 3101 "cfg-if", 3102] 3103 3104[[package]] 3105name = "uuid" 3106version = "1.8.0" 3107source = "registry+https://github.com/rust-lang/crates.io-index" 3108checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 3109dependencies = [ 3110 "getrandom", 3111 "serde", 3112] 3113 3114[[package]] 3115name = "v4l2r" 3116version = "0.0.5" 3117source = "registry+https://github.com/rust-lang/crates.io-index" 3118checksum = "fe1d612d2df2a0802020c49a1b029282c45991cdfff1731b5fc61ed3dce4168a" 3119dependencies = [ 3120 "anyhow", 3121 "bindgen 0.69.4", 3122 "bitflags 2.4.0", 3123 "enumn", 3124 "log", 3125 "nix 0.28.0", 3126 "thiserror", 3127] 3128 3129[[package]] 3130name = "vcpkg" 3131version = "0.2.15" 3132source = "registry+https://github.com/rust-lang/crates.io-index" 3133checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3134 3135[[package]] 3136name = "version_check" 3137version = "0.9.4" 3138source = "registry+https://github.com/rust-lang/crates.io-index" 3139checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3140 3141[[package]] 3142name = "vfio_sys" 3143version = "0.1.0" 3144dependencies = [ 3145 "base", 3146 "zerocopy", 3147] 3148 3149[[package]] 3150name = "vhost" 3151version = "0.1.0" 3152dependencies = [ 3153 "base", 3154 "libc", 3155 "net_util", 3156 "remain", 3157 "static_assertions", 3158 "thiserror", 3159 "virtio_sys", 3160 "vm_memory", 3161] 3162 3163[[package]] 3164name = "virtio-media" 3165version = "0.0.6" 3166source = "registry+https://github.com/rust-lang/crates.io-index" 3167checksum = "986653f821d3a3ed13543c37ba0819877457101855454e7d08611784eb63fa0c" 3168dependencies = [ 3169 "anyhow", 3170 "enumn", 3171 "libc", 3172 "log", 3173 "nix 0.28.0", 3174 "thiserror", 3175 "v4l2r", 3176 "zerocopy", 3177] 3178 3179[[package]] 3180name = "virtio_sys" 3181version = "0.1.0" 3182dependencies = [ 3183 "base", 3184 "data_model", 3185 "zerocopy", 3186] 3187 3188[[package]] 3189name = "vk-parse" 3190version = "0.8.0" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "4c6a0bda9bbe6b9e50e6456c80aa8fe4cca3b21e4311a1130c41e4915ec2e32a" 3193dependencies = [ 3194 "xml-rs", 3195] 3196 3197[[package]] 3198name = "vm_control" 3199version = "0.1.0" 3200dependencies = [ 3201 "anyhow", 3202 "balloon_control", 3203 "base", 3204 "cfg-if", 3205 "crypto_generic", 3206 "gdbstub", 3207 "gdbstub_arch", 3208 "hypervisor", 3209 "libc", 3210 "once_cell", 3211 "protos", 3212 "remain", 3213 "resources", 3214 "rutabaga_gfx", 3215 "serde", 3216 "serde_json", 3217 "serde_keyvalue", 3218 "swap", 3219 "sync", 3220 "thiserror", 3221 "vm_control_product", 3222 "vm_memory", 3223 "winapi", 3224] 3225 3226[[package]] 3227name = "vm_control_product" 3228version = "0.1.0" 3229dependencies = [ 3230 "serde", 3231] 3232 3233[[package]] 3234name = "vm_memory" 3235version = "0.1.0" 3236dependencies = [ 3237 "anyhow", 3238 "base", 3239 "bitflags 2.4.0", 3240 "cfg-if", 3241 "cros_async", 3242 "data_model", 3243 "libc", 3244 "lz4_flex", 3245 "remain", 3246 "serde", 3247 "serde_json", 3248 "tempfile", 3249 "thiserror", 3250 "zerocopy", 3251] 3252 3253[[package]] 3254name = "vmm_vhost" 3255version = "0.1.0" 3256dependencies = [ 3257 "anyhow", 3258 "base", 3259 "bitflags 2.4.0", 3260 "cfg-if", 3261 "enumn", 3262 "libc", 3263 "remain", 3264 "serde", 3265 "serde_json", 3266 "tempfile", 3267 "thiserror", 3268 "tube_transporter", 3269 "zerocopy", 3270] 3271 3272[[package]] 3273name = "vulkano" 3274version = "0.31.1" 3275source = "registry+https://github.com/rust-lang/crates.io-index" 3276checksum = "49e6f6f908670b33ec1fcb1e9c25677cb4d6783893f89bc11d49d2eb5061ccb5" 3277dependencies = [ 3278 "ash", 3279 "bytemuck", 3280 "core-graphics-types", 3281 "crossbeam-queue", 3282 "half", 3283 "heck", 3284 "indexmap 1.9.1", 3285 "lazy_static", 3286 "libloading", 3287 "objc", 3288 "parking_lot", 3289 "proc-macro2", 3290 "quote 1.0.36", 3291 "regex", 3292 "serde", 3293 "serde_json", 3294 "smallvec", 3295 "vk-parse", 3296] 3297 3298[[package]] 3299name = "walkdir" 3300version = "2.5.0" 3301source = "registry+https://github.com/rust-lang/crates.io-index" 3302checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3303dependencies = [ 3304 "same-file", 3305 "winapi-util", 3306] 3307 3308[[package]] 3309name = "wasi" 3310version = "0.11.0+wasi-snapshot-preview1" 3311source = "registry+https://github.com/rust-lang/crates.io-index" 3312checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3313 3314[[package]] 3315name = "which" 3316version = "4.2.5" 3317source = "registry+https://github.com/rust-lang/crates.io-index" 3318checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae" 3319dependencies = [ 3320 "either", 3321 "lazy_static", 3322 "libc", 3323] 3324 3325[[package]] 3326name = "widestring" 3327version = "1.0.2" 3328source = "registry+https://github.com/rust-lang/crates.io-index" 3329checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 3330 3331[[package]] 3332name = "win_audio" 3333version = "0.1.0" 3334dependencies = [ 3335 "anyhow", 3336 "async-trait", 3337 "audio_streams", 3338 "audio_util", 3339 "base", 3340 "cros_async", 3341 "libc", 3342 "metrics", 3343 "once_cell", 3344 "prebuilts", 3345 "sync", 3346 "thiserror", 3347 "win_util", 3348 "winapi", 3349 "wio", 3350] 3351 3352[[package]] 3353name = "win_util" 3354version = "0.1.0" 3355dependencies = [ 3356 "anyhow", 3357 "enumn", 3358 "libc", 3359 "once_cell", 3360 "serde", 3361 "winapi", 3362 "windows", 3363 "zeroize", 3364] 3365 3366[[package]] 3367name = "winapi" 3368version = "0.3.9" 3369source = "registry+https://github.com/rust-lang/crates.io-index" 3370checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3371dependencies = [ 3372 "winapi-i686-pc-windows-gnu", 3373 "winapi-x86_64-pc-windows-gnu", 3374] 3375 3376[[package]] 3377name = "winapi-i686-pc-windows-gnu" 3378version = "0.4.0" 3379source = "registry+https://github.com/rust-lang/crates.io-index" 3380checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3381 3382[[package]] 3383name = "winapi-util" 3384version = "0.1.5" 3385source = "registry+https://github.com/rust-lang/crates.io-index" 3386checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3387dependencies = [ 3388 "winapi", 3389] 3390 3391[[package]] 3392name = "winapi-x86_64-pc-windows-gnu" 3393version = "0.4.0" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3396 3397[[package]] 3398name = "windows" 3399version = "0.39.0" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3402dependencies = [ 3403 "windows_aarch64_msvc 0.39.0", 3404 "windows_i686_gnu 0.39.0", 3405 "windows_i686_msvc 0.39.0", 3406 "windows_x86_64_gnu 0.39.0", 3407 "windows_x86_64_msvc 0.39.0", 3408] 3409 3410[[package]] 3411name = "windows-sys" 3412version = "0.42.0" 3413source = "registry+https://github.com/rust-lang/crates.io-index" 3414checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3415dependencies = [ 3416 "windows_aarch64_gnullvm 0.42.1", 3417 "windows_aarch64_msvc 0.42.1", 3418 "windows_i686_gnu 0.42.1", 3419 "windows_i686_msvc 0.42.1", 3420 "windows_x86_64_gnu 0.42.1", 3421 "windows_x86_64_gnullvm 0.42.1", 3422 "windows_x86_64_msvc 0.42.1", 3423] 3424 3425[[package]] 3426name = "windows-sys" 3427version = "0.45.0" 3428source = "registry+https://github.com/rust-lang/crates.io-index" 3429checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3430dependencies = [ 3431 "windows-targets 0.42.1", 3432] 3433 3434[[package]] 3435name = "windows-sys" 3436version = "0.48.0" 3437source = "registry+https://github.com/rust-lang/crates.io-index" 3438checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3439dependencies = [ 3440 "windows-targets 0.48.5", 3441] 3442 3443[[package]] 3444name = "windows-targets" 3445version = "0.42.1" 3446source = "registry+https://github.com/rust-lang/crates.io-index" 3447checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 3448dependencies = [ 3449 "windows_aarch64_gnullvm 0.42.1", 3450 "windows_aarch64_msvc 0.42.1", 3451 "windows_i686_gnu 0.42.1", 3452 "windows_i686_msvc 0.42.1", 3453 "windows_x86_64_gnu 0.42.1", 3454 "windows_x86_64_gnullvm 0.42.1", 3455 "windows_x86_64_msvc 0.42.1", 3456] 3457 3458[[package]] 3459name = "windows-targets" 3460version = "0.48.5" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3463dependencies = [ 3464 "windows_aarch64_gnullvm 0.48.5", 3465 "windows_aarch64_msvc 0.48.5", 3466 "windows_i686_gnu 0.48.5", 3467 "windows_i686_msvc 0.48.5", 3468 "windows_x86_64_gnu 0.48.5", 3469 "windows_x86_64_gnullvm 0.48.5", 3470 "windows_x86_64_msvc 0.48.5", 3471] 3472 3473[[package]] 3474name = "windows_aarch64_gnullvm" 3475version = "0.42.1" 3476source = "registry+https://github.com/rust-lang/crates.io-index" 3477checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 3478 3479[[package]] 3480name = "windows_aarch64_gnullvm" 3481version = "0.48.5" 3482source = "registry+https://github.com/rust-lang/crates.io-index" 3483checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3484 3485[[package]] 3486name = "windows_aarch64_msvc" 3487version = "0.39.0" 3488source = "registry+https://github.com/rust-lang/crates.io-index" 3489checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3490 3491[[package]] 3492name = "windows_aarch64_msvc" 3493version = "0.42.1" 3494source = "registry+https://github.com/rust-lang/crates.io-index" 3495checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 3496 3497[[package]] 3498name = "windows_aarch64_msvc" 3499version = "0.48.5" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3502 3503[[package]] 3504name = "windows_i686_gnu" 3505version = "0.39.0" 3506source = "registry+https://github.com/rust-lang/crates.io-index" 3507checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3508 3509[[package]] 3510name = "windows_i686_gnu" 3511version = "0.42.1" 3512source = "registry+https://github.com/rust-lang/crates.io-index" 3513checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 3514 3515[[package]] 3516name = "windows_i686_gnu" 3517version = "0.48.5" 3518source = "registry+https://github.com/rust-lang/crates.io-index" 3519checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3520 3521[[package]] 3522name = "windows_i686_msvc" 3523version = "0.39.0" 3524source = "registry+https://github.com/rust-lang/crates.io-index" 3525checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3526 3527[[package]] 3528name = "windows_i686_msvc" 3529version = "0.42.1" 3530source = "registry+https://github.com/rust-lang/crates.io-index" 3531checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 3532 3533[[package]] 3534name = "windows_i686_msvc" 3535version = "0.48.5" 3536source = "registry+https://github.com/rust-lang/crates.io-index" 3537checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3538 3539[[package]] 3540name = "windows_x86_64_gnu" 3541version = "0.39.0" 3542source = "registry+https://github.com/rust-lang/crates.io-index" 3543checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3544 3545[[package]] 3546name = "windows_x86_64_gnu" 3547version = "0.42.1" 3548source = "registry+https://github.com/rust-lang/crates.io-index" 3549checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 3550 3551[[package]] 3552name = "windows_x86_64_gnu" 3553version = "0.48.5" 3554source = "registry+https://github.com/rust-lang/crates.io-index" 3555checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3556 3557[[package]] 3558name = "windows_x86_64_gnullvm" 3559version = "0.42.1" 3560source = "registry+https://github.com/rust-lang/crates.io-index" 3561checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 3562 3563[[package]] 3564name = "windows_x86_64_gnullvm" 3565version = "0.48.5" 3566source = "registry+https://github.com/rust-lang/crates.io-index" 3567checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3568 3569[[package]] 3570name = "windows_x86_64_msvc" 3571version = "0.39.0" 3572source = "registry+https://github.com/rust-lang/crates.io-index" 3573checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3574 3575[[package]] 3576name = "windows_x86_64_msvc" 3577version = "0.42.1" 3578source = "registry+https://github.com/rust-lang/crates.io-index" 3579checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 3580 3581[[package]] 3582name = "windows_x86_64_msvc" 3583version = "0.48.5" 3584source = "registry+https://github.com/rust-lang/crates.io-index" 3585checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3586 3587[[package]] 3588name = "wio" 3589version = "0.2.2" 3590source = "registry+https://github.com/rust-lang/crates.io-index" 3591checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5" 3592dependencies = [ 3593 "winapi", 3594] 3595 3596[[package]] 3597name = "x86_64" 3598version = "0.1.0" 3599dependencies = [ 3600 "acpi_tables", 3601 "anyhow", 3602 "arch", 3603 "base", 3604 "cfg-if", 3605 "chrono", 3606 "cros_fdt", 3607 "devices", 3608 "gdbstub_arch", 3609 "hypervisor", 3610 "jail", 3611 "kernel_cmdline", 3612 "kernel_loader", 3613 "libc", 3614 "minijail", 3615 "once_cell", 3616 "rand", 3617 "remain", 3618 "resources", 3619 "swap", 3620 "sync", 3621 "thiserror", 3622 "uuid", 3623 "vm_control", 3624 "vm_memory", 3625 "zerocopy", 3626] 3627 3628[[package]] 3629name = "xml-rs" 3630version = "0.8.19" 3631source = "registry+https://github.com/rust-lang/crates.io-index" 3632checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 3633 3634[[package]] 3635name = "zerocopy" 3636version = "0.7.32" 3637source = "registry+https://github.com/rust-lang/crates.io-index" 3638checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 3639dependencies = [ 3640 "byteorder", 3641 "zerocopy-derive", 3642] 3643 3644[[package]] 3645name = "zerocopy-derive" 3646version = "0.7.32" 3647source = "registry+https://github.com/rust-lang/crates.io-index" 3648checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 3649dependencies = [ 3650 "proc-macro2", 3651 "quote 1.0.36", 3652 "syn 2.0.77", 3653] 3654 3655[[package]] 3656name = "zeroize" 3657version = "1.5.7" 3658source = "registry+https://github.com/rust-lang/crates.io-index" 3659checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 3660 3661[[package]] 3662name = "zstd" 3663version = "0.13.2" 3664source = "registry+https://github.com/rust-lang/crates.io-index" 3665checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 3666dependencies = [ 3667 "zstd-safe", 3668] 3669 3670[[package]] 3671name = "zstd-safe" 3672version = "7.2.1" 3673source = "registry+https://github.com/rust-lang/crates.io-index" 3674checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 3675dependencies = [ 3676 "zstd-sys", 3677] 3678 3679[[package]] 3680name = "zstd-sys" 3681version = "2.0.13+zstd.1.5.6" 3682source = "registry+https://github.com/rust-lang/crates.io-index" 3683checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 3684dependencies = [ 3685 "cc", 3686 "pkg-config", 3687] 3688