rcrypt is a rust-based cryptographic library build entirely for learning purposes. It is not suitable for high security purposes and will not be for the foreseeable future.
If, for some reason, you wish to include rcrypt in your rust project, add the following to your Cargo.toml
file:
[dependencies.rcrypt]
git = "https://github.com/dgriffen/rcrypt.git"
then add
extern crate rcrypt;
to your rust project.