| Crates.io | apdu-core |
| lib.rs | apdu-core |
| version | 0.4.0 |
| created_at | 2022-06-29 11:23:42.7367+00 |
| updated_at | 2023-02-05 12:41:19.012642+00 |
| description | Core library for composing APDU commands and parsing their responses. |
| homepage | https://github.com/siketyan/apdu-rs |
| repository | https://github.com/siketyan/apdu-rs.git |
| max_upload_size | |
| id | 615394 |
| size | 12,122 |
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.