fmt
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
shimun 2020-06-23 19:10:40 +02:00
parent c358202a3a
commit 0a2a054233
Signed by: shimun
GPG Key ID: E81D8382DC2F971B
3 changed files with 11 additions and 1 deletions

View File

@ -922,6 +922,8 @@ mod test {
panic!() panic!()
} }
//TODO: test Trezor response since tr isn't running fido 2.1 yet
#[test] #[test]
fn response_yubikey() { fn response_yubikey() {
test_response(&[ test_response(&[

View File

@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum ProtocolError {
CborEncode,
CborDecode { data: Vec<u8> },
}

View File

@ -1,3 +1,4 @@
mod cbor; mod cbor;
mod error;
pub use self::cbor::*; pub use self::cbor::*;
pub use self::error::*;