docs.rs failed to build sha1-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: sha1-0.10.1

A minimal implementation of SHA1 for rust.

Example:

extern crate sha1;
# fn main() {

let mut m = sha1::Sha1::new();
m.update("Hello World!".as_bytes());
assert_eq!(m.hexdigest().as_slice(),
           "2ef7bde608ce5404e97d5f042f95f89f1c232871");
# }