Rust bindings for [libxcrypt](https://github.com/besser82/libxcrypt)
Add `xcrypt` to your `Cargo.toml`:
```sh
cargo add xcrypt
```
Hash a phrase with the best available hashing method and default parameters:
```rust
use xcrypt::{crypt, crypt_gensalt};
fn main() {
}
```