Added warning about alpha status of lib

This commit is contained in:
Kai Jan Kriegel 2022-01-06 17:31:28 +01:00
parent 196b94b90d
commit d76554741b

View File

@ -1,3 +1,11 @@
//! # desfire
//!
//! **WARNING** This is alpha quality software at best and should not be relied upon. **WARNING**
//!
//!The `desfire` Crate provides the cryptographic methods and specific commands for interfacing
//! with NXP MiFare Desfire cards.
//!
use crate::iso7816_4::apducommand::APDUCommand; use crate::iso7816_4::apducommand::APDUCommand;
use crate::iso7816_4::apduresponse::APDUResponse; use crate::iso7816_4::apduresponse::APDUResponse;
use error::Result; use error::Result;
@ -26,9 +34,3 @@ pub trait Card {
fn transmit(&self, apdu_cmd: APDUCommand) -> Result<APDUResponse>; fn transmit(&self, apdu_cmd: APDUCommand) -> Result<APDUResponse>;
} }
//! # desfire
//!
//! The `desfire` Crate provides the cryptographic methods and specific commands for interfacing
//! with NXP MiFare Desfire cards.
//!
//! **WARNING** This is alpha quality Software at best and should not be relied upon.