diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-07-09 10:22:08 +0000 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-07-09 12:23:14 +0200 |
commit | 88b32f5c2187e59fece93cd245aeadb4e5f9e04a (patch) | |
tree | 9a5fee8fa7e40240fb334c4f4f580f768235016e | |
parent | 7ce751225f12c295c6e33dd46cfb5dcb88f8fbb3 (diff) | |
download | nitrokey-rs-88b32f5c2187e59fece93cd245aeadb4e5f9e04a.tar.gz nitrokey-rs-88b32f5c2187e59fece93cd245aeadb4e5f9e04a.tar.bz2 |
Remove allow(deprecated) attribute for in lib.rs
During the connection manager refactoring, we temporarily used
deprecated methods. This is no longer the case, so we can remove the
allow(deprecated) attribute.
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -117,7 +117,6 @@ use nitrokey_sys; pub use crate::auth::{Admin, Authenticate, User}; pub use crate::config::Config; -#[allow(deprecated)] pub use crate::device::{ Device, DeviceWrapper, Model, Pro, SdCardData, Storage, StorageProductionInfo, StorageStatus, VolumeMode, VolumeStatus, |