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 7f70a55 commit 9af843bCopy full SHA for 9af843b
frozen-abi/src/lib.rs
@@ -1,6 +1,13 @@
1
#![allow(incomplete_features)]
2
#![cfg_attr(docsrs, feature(doc_cfg))]
3
#![cfg_attr(feature = "frozen-abi", feature(specialization))]
4
+// Activate some of the Rust 2024 lints to make the future migration easier.
5
+#![warn(if_let_rescope)]
6
+#![warn(keyword_idents_2024)]
7
+#![warn(rust_2024_incompatible_pat)]
8
+#![warn(tail_expr_drop_order)]
9
+#![warn(unsafe_attr_outside_unsafe)]
10
+#![warn(unsafe_op_in_unsafe_fn)]
11
12
// Allows macro expansion of `use ::solana_frozen_abi::*` to work within this crate
13
extern crate self as solana_frozen_abi;
0 commit comments