Create a crypto submodule and move the SHA-1 implementation into it.

This commit is contained in:
Palmer Cox 2013-06-23 18:54:44 -04:00
parent ac4211ef52
commit c5400a8830
2 changed files with 4 additions and 1 deletions

View File

@ -86,13 +86,16 @@ pub mod sort;
pub mod dlist;
pub mod treemap;
// Crypto
#[path="crypto/sha1.rs"]
pub mod sha1;
// And ... other stuff
pub mod ebml;
pub mod dbg;
pub mod getopts;
pub mod json;
pub mod sha1;
pub mod md4;
pub mod tempfile;
pub mod term;