rozbb / molasses

A Rust implementation of the Message Layer Security group messaging protocol
Other
115 stars 8 forks source link

Cannot compile latest commit #1

Closed Restioson closed 5 years ago

Restioson commented 5 years ago

Hi,

After adding molasses to my project to try it out, I get the following error:

   Compiling molasses v0.1.0 (https://github.com/trailofbits/molasses/?rev=9f9d073eeee49e3e2536a112a01b46b847c7c916#9f9d073e)
error[E0583]: file not found for module `hash`
  --> /home/restioson/.cargo/git/checkouts/molasses-d81cd9399e6f8d64/9f9d073/src/crypto.rs:12:16
   |
12 | pub(crate) mod hash;
   |                ^^^^
   |
   = help: name the file either crypto/hash.rs or crypto/hash/mod.rs inside the directory "/home/restioson/.cargo/git/checkouts/molasses-d81cd9399e6f8d64/9f9d073/src"

error: aborting due to previous error

For more information about this error, try `rustc --explain E0583`.
error: Could not compile `molasses`.

Perhaps was this file mistakenly excluded from the commit?

rozbb commented 5 years ago

Whoops, sorry about that. I've added hmac.rs and hash.rs in the latest commit. I should really start doing CI soon. Thanks for noticing!

Restioson commented 5 years ago

Thanks!