1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! An interface to Proxmark3 devices which run the [Iceman
//! firmware](https://github.com/RfidResearchGroup/proxmark3).
//!
//! Use of this library may be through commands executed by a [`Proxmark`]. This is the recommended
//! way, when possible. In cases where there is no developed command API, raw
//! [`request`](crate::raw::request)/[`response`](crate::raw::response) frames may be sent/received
//! by a [`raw::Proxmark`]. It is possible to swap between these modes of use at runtime.
//!
//! # Feature Flags
//!
//! - `serde`: derives `Serialize` and `Deserialize` on card types
//! - `sqlx`: implements `Type`, `Encode`, and `Decode` for card ID types
pub use mod_const;
pub use crate;