foxmark3 0.1.1

Send/receive Proxmark 3 commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Device interface which allows the sending/receiving of [`request`]s/[`response`]s. For a more
//! abstract interface, see [`crate::commands`].

pub mod common;
pub mod device;
pub mod request;
pub mod response;

pub use common::{Command, NgPayload};
pub use device::{Proxmark, find, find_path, new};
pub use response::Response;