Rust library to compose or parse APDU commands and responses.
This repository is made of these crates separately:
Add to your Cargo.toml as a dependency as follows:
[dependencies]
apdu = "0.3"This library supports longer payloads of APDU commands and responses.
If you want to use these, turn longer_payloads feature on:
apdu-core = { version = "0.3", features = ["longer_payloads"] }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:
[dependencies]
apdu-core = { version = "0.3", default-features = false }See docs.rs.