Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions md5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ including HMAC-MD5.
## Library name

Note that this crate is named as `md-5` (the `md5` crate is not part of the RustCrypto project),
but it renames the library to `md5`. In other words, in your Cargo.toml you should use
`md_5 = "0.11"`, but in you source code imports from this crate will look like `use md5::Md5;`.
but it renames the library to `md5`.

In other words, if you use this crate, your Cargo.toml should look like this:
```toml
[dependencies]
md_5 = "0.11"
```
However, in your Rust code you should import and use `md5` (not `md_5`).

## Examples

Expand Down