uem_reader/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#![crate_type = "lib"]
4#![crate_name = "uem_reader"]
5#![cfg_attr(not(feature = "std"), no_std)]
6
7pub mod errors;
8mod helpers;
9pub mod card;
10pub mod reader;
11pub mod commands;