apdu-dispatch 0.4.0

Dispatch layer after nfc-device and usbd-ccid
Documentation
#![cfg_attr(not(feature = "std"), no_std)]

#[macro_use]
extern crate delog;
generate_macros!();

pub use apdu_app as app;
pub use app::App;
pub use iso7816;

pub mod command {
    pub const SIZE: usize = 7609;
    pub type Data = iso7816::Data<SIZE>;
}

pub mod response {
    pub const SIZE: usize = 7609;
    pub type Data = iso7816::Data<SIZE>;
}

// What apps can expect to send and recieve.
pub type Command = iso7816::Command<{ command::SIZE }>;
pub type Response = iso7816::Response<{ response::SIZE }>;

pub mod dispatch;
pub mod interchanges;