Skip to content

Commit acc33e3

Browse files
committed
Bump toolchain to 1.85.0
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent a1943ab commit acc33e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/nostr/src/util/hex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ where
101101
let low_idx: usize = high_idx + 1;
102102
let low: u8 = val(hex[low_idx], low_idx)?;
103103

104-
*byte = high << 4 | low;
104+
*byte = (high << 4) | low;
105105
}
106106

107107
Ok(())

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.84.0"
2+
channel = "1.85.0"
33
profile = "minimal"
44
components = ["clippy", "rust-docs", "rustfmt"]
55
targets = ["wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)