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.
1 parent 288218c commit 764922fCopy full SHA for 764922f
authority/src/lib.rs
@@ -76,7 +76,9 @@ mod helper {
76
use std::cell::RefCell;
77
78
thread_local! {
79
- static NESTED_MAX_ENCODED_LEN: RefCell<bool> = RefCell::new(false);
+ static NESTED_MAX_ENCODED_LEN: RefCell<bool> = const {
80
+ RefCell::new(false)
81
+ };
82
}
83
84
pub fn set_nested_max_encoded_len(val: bool) {
rust-toolchain.toml
@@ -1,4 +1,4 @@
1
[toolchain]
2
-channel = "1.75.0"
+channel = "1.77.0"
3
components = ["rustfmt", "clippy"]
4
targets = ["wasm32-unknown-unknown"]
0 commit comments