🦀 apdu-rs
Rust library to compose or parse APDU commands and responses.
🏗 Crates
This repository is made of these crates separately:
apdu
apdu-core
apdu-derive
📦 Getting Started
Add to your Cargo.toml as a dependency as follows:
[]
= "0.3"
🛠 Longer payloads support
This library supports longer payloads of APDU commands and responses.
If you want to use these, turn longer_payloads
feature on:
= { = "0.3", = ["longer_payloads"] }
🛠 no_std support
apdu-core crate does support no_std environments (but it requires alloc
yet).
If you are using this crate in no_std, turn std
feature off by disabling default features:
[]
= { = "0.3", = false }
📄 Documentation
See docs.rs.