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 c74ae4d commit 383f998Copy full SHA for 383f998
src/lib.rs
@@ -118,11 +118,11 @@
118
//!
119
#![no_std]
120
#![allow(incomplete_features)]
121
-#![feature(adt_const_params)]
122
-#![feature(generic_const_exprs)]
123
-#![feature(generic_associated_types)]
124
#![feature(type_alias_impl_trait)]
125
-#![feature(future_poll_fn)]
+
+#![feature(cfg_version)]
+#![cfg_attr(all(target_family="bolos", not(version("1.64"))), feature(future_poll_fn))]
+#![cfg_attr(all(target_family="bolos", not(version("1.65"))), feature(generic_associated_types))]
126
127
use ledger_log::*;
128
use nanos_sdk::io;
0 commit comments