diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -91,10 +91,6 @@ unused, )] -extern crate libc; -extern crate nitrokey_sys; -extern crate rand; - mod auth; mod config; mod device; @@ -104,6 +100,8 @@ mod pws; mod tests; mod util; +use nitrokey_sys; + pub use crate::auth::{Admin, Authenticate, User}; pub use crate::config::Config; pub use crate::device::{connect, Device, DeviceWrapper, Pro, Storage, StorageStatus, VolumeStatus}; |