summaryrefslogtreecommitdiffstats
path: root/melib/src/lib.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-01-08 17:04:44 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-01-20 15:58:59 +0200
commita365a846b8e8bca8f053e8f7152604e0103a7181 (patch)
tree0f797bdf1915e0e149fda161000912c9c5a21e03 /melib/src/lib.rs
parentb6403f486b0ceefff46781bccca056a38ecd0577 (diff)
Replace StackVec with smallvec::SmallVec
SmallVec has a less buggy and better implementation.
Diffstat (limited to 'melib/src/lib.rs')
-rw-r--r--melib/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/melib/src/lib.rs b/melib/src/lib.rs
index 36cc0e72..468bfc14 100644
--- a/melib/src/lib.rs
+++ b/melib/src/lib.rs
@@ -123,8 +123,6 @@ pub mod mailbox;
pub mod thread;
pub use crate::email::*;
pub use crate::thread::*;
-mod structs;
-pub use self::structs::*;
pub mod parsec;
#[macro_use]