chore: ignore unused in fido module

This commit is contained in:
Suyog Tandel
2026-01-12 15:27:18 +05:30
parent a9db653787
commit e40d67cd6a
7 changed files with 707 additions and 17 deletions
+1 -1
View File
@@ -2949,7 +2949,7 @@ dependencies = [
[[package]]
name = "picoforge"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"anyhow",
"bitflags 2.10.0",
+2 -1
View File
@@ -1,4 +1,5 @@
//! Constants, enums, bitflags and data structures for FIDO2 protocol for pico-fido firmware.
#![allow(unused)]
use std::fmt;
@@ -272,7 +273,7 @@ pub enum CoseAlgorithm {
EdDSA = -8,
ESP256 = -9,
Ed25519 = -19,
ECDH_ES_HKDF_256 = -25,
EcdhEsHkdf256 = -25,
ES384 = -35,
ES512 = -36,
ES256K = -47,
+2
View File
@@ -1,3 +1,5 @@
#![allow(unused)]
use anyhow::{Result, anyhow};
use rand::Rng;
use std::time::Duration;
+2
View File
@@ -1,3 +1,5 @@
#![allow(unused)]
pub mod constants;
pub mod hid;