Skip to content

Commit

Permalink
revert unnecessary changes
Browse files Browse the repository at this point in the history
Signed-off-by: conanoc <[email protected]>
  • Loading branch information
conanoc committed Sep 8, 2023
1 parent d0efe6f commit cda9162
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//! Error types
use std::error::Error as StdError;
use std::fmt::{self, Display, Formatter};

Expand Down
1 change: 0 additions & 1 deletion src/ffi/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![allow(missing_docs, missing_debug_implementations)]
use std::marker::PhantomData;
use std::os::raw::c_char;
use std::time::Duration;
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![deny(missing_docs, missing_debug_implementations, rust_2018_idioms)]

#[macro_use]
pub mod error;
mod error;
pub use self::error::{Error, ErrorKind};

#[cfg(any(test, feature = "log"))]
Expand All @@ -22,7 +22,7 @@ pub use askar_storage as storage;
pub use askar_storage::future;

#[cfg(feature = "ffi")]
pub mod ffi;
mod ffi;

pub mod kms;

Expand Down
1 change: 0 additions & 1 deletion src/store.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//! module for askar store and session
use askar_storage::backend::copy_profile;

use crate::{
Expand Down

0 comments on commit cda9162

Please sign in to comment.