Crates.io | apdu |
lib.rs | apdu |
version | 0.4.0 |
source | src |
created_at | 2022-06-29 13:18:46.362105 |
updated_at | 2023-02-05 12:41:51.942297 |
description | High-level API for APDU commands and responses. |
homepage | https://github.com/siketyan/apdu-rs |
repository | https://github.com/siketyan/apdu-rs.git |
max_upload_size | |
id | 615432 |
size | 24,190 |
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.