ecaps2: Move hashing crates to the main library.

This commit is contained in:
Emmanuel Gil Peyrot 2017-04-29 01:31:39 +01:00
commit b09c57ec72
2 changed files with 6 additions and 7 deletions

View file

@ -11,6 +11,9 @@ extern crate minidom;
extern crate jid;
extern crate base64;
extern crate digest;
extern crate sha2;
extern crate sha3;
extern crate blake2;
/// Error type returned by every parser on failure.
pub mod error;