UEFI utility to spoof the brand string of modern AMD processors via Machine State Registers. (Mirrored from https://github.com/InvoxiPlayGames/amd-brand-string-edit )
at master 4.3 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "amd-brand-string-edit" 7version = "0.1.0" 8dependencies = [ 9 "log", 10 "uefi", 11 "x86", 12] 13 14[[package]] 15name = "bit_field" 16version = "0.10.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 19 20[[package]] 21name = "bitflags" 22version = "1.3.2" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 25 26[[package]] 27name = "bitflags" 28version = "2.9.3" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d" 31 32[[package]] 33name = "cfg-if" 34version = "1.0.3" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 37 38[[package]] 39name = "log" 40version = "0.4.27" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 43 44[[package]] 45name = "proc-macro2" 46version = "1.0.101" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 49dependencies = [ 50 "unicode-ident", 51] 52 53[[package]] 54name = "ptr_meta" 55version = "0.3.0" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "fe9e76f66d3f9606f44e45598d155cb13ecf09f4a28199e48daf8c8fc937ea90" 58dependencies = [ 59 "ptr_meta_derive", 60] 61 62[[package]] 63name = "ptr_meta_derive" 64version = "0.3.0" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1" 67dependencies = [ 68 "proc-macro2", 69 "quote", 70 "syn", 71] 72 73[[package]] 74name = "quote" 75version = "1.0.40" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 78dependencies = [ 79 "proc-macro2", 80] 81 82[[package]] 83name = "raw-cpuid" 84version = "10.7.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 87dependencies = [ 88 "bitflags 1.3.2", 89] 90 91[[package]] 92name = "syn" 93version = "2.0.106" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 96dependencies = [ 97 "proc-macro2", 98 "quote", 99 "unicode-ident", 100] 101 102[[package]] 103name = "ucs2" 104version = "0.3.3" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "df79298e11f316400c57ec268f3c2c29ac3c4d4777687955cd3d4f3a35ce7eba" 107dependencies = [ 108 "bit_field", 109] 110 111[[package]] 112name = "uefi" 113version = "0.35.0" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "da7569ceafb898907ff764629bac90ac24ba4203c38c33ef79ee88c74aa35b11" 116dependencies = [ 117 "bitflags 2.9.3", 118 "cfg-if", 119 "log", 120 "ptr_meta", 121 "ucs2", 122 "uefi-macros", 123 "uefi-raw", 124 "uguid", 125] 126 127[[package]] 128name = "uefi-macros" 129version = "0.18.1" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "b3dad47b3af8f99116c0f6d4d669c439487d9aaf1c8d9480d686cda6f3a8aa23" 132dependencies = [ 133 "proc-macro2", 134 "quote", 135 "syn", 136] 137 138[[package]] 139name = "uefi-raw" 140version = "0.11.0" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "7cad96b8baaf1615d3fdd0f03d04a0b487d857c1b51b19dcbfe05e2e3c447b78" 143dependencies = [ 144 "bitflags 2.9.3", 145 "uguid", 146] 147 148[[package]] 149name = "uguid" 150version = "2.2.0" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533" 153 154[[package]] 155name = "unicode-ident" 156version = "1.0.18" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 159 160[[package]] 161name = "x86" 162version = "0.52.0" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385" 165dependencies = [ 166 "bit_field", 167 "bitflags 1.3.2", 168 "raw-cpuid", 169]