We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6ac9ad + 9cd900c commit ce13ff8Copy full SHA for ce13ff8
files/rustc/gnu.toml
@@ -1,3 +1,9 @@
1
+[[files]]
2
+name = "rustc/binutils-2.40.tar.bz2"
3
+source = "https://sourceware.org/pub/binutils/releases/binutils-2.40.tar.bz2"
4
+sha256 = "f8298eb153a4b37d112e945aa5cb2850040bcf26a3ea65b5a715c83afe05e48a"
5
+license = "GNU General Public License"
6
+
7
[[files]]
8
name = "rustc/binutils-2.44.tar.xz"
9
source = "https://sourceware.org/pub/binutils/releases/binutils-2.44.tar.xz"
src/utils.rs
@@ -5,7 +5,7 @@ pub fn to_hex(sha: &Sha256) -> String {
let bytes = sha.as_slice();
let mut result = String::new();
for byte in bytes {
- result.push_str(&format!("{byte:0<2x}"));
+ result.push_str(&format!("{byte:0>2x}"));
}
10
result
11
0 commit comments