We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7db8a6 commit 14a7810Copy full SHA for 14a7810
rust-app/src/implementation.rs
@@ -26,7 +26,7 @@ use core::future::Future;
26
27
type IotaAddressRaw = [u8; IOTA_ADDRESS_LENGTH];
28
29
-#[allow(dead_code)]
+#[expect(dead_code)]
30
pub struct IotaPubKeyAddress(ledger_device_sdk::ecc::ECPublicKey<65, 'E'>, IotaAddressRaw);
31
32
impl Address<IotaPubKeyAddress, ledger_device_sdk::ecc::ECPublicKey<65, 'E'>>
rust-app/src/lib.rs
@@ -4,7 +4,6 @@
4
#![feature(adt_const_params)]
5
#![feature(type_alias_impl_trait)]
6
#![cfg_attr(not(version("1.83")), feature(const_mut_refs))]
7
-// Hack to fix build with nightly-2024-11-22
8
#![cfg_attr(version("1.84"), feature(generic_const_exprs))]
9
#![feature(try_blocks)]
10
#![cfg_attr(all(target_family = "bolos", test), no_main)]
0 commit comments