mirror of
https://github.com/librekeys/picoforge.git
synced 2026-07-28 08:01:19 -07:00
chore: ignore unused in fido module
This commit is contained in:
Generated
+1
-1
@@ -2949,7 +2949,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "picoforge"
|
||||
version = "0.1.4"
|
||||
version = "0.1.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bitflags 2.10.0",
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(unused)]
|
||||
|
||||
use anyhow::{Result, anyhow};
|
||||
use rand::Rng;
|
||||
use std::time::Duration;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(unused)]
|
||||
|
||||
pub mod constants;
|
||||
pub mod hid;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user