Keats / rust-bcrypt

Easily hash and verify passwords using Bcrypt
MIT License
340 stars 49 forks source link

Forbid unsafe code #43

Closed hhirtz closed 4 years ago

hhirtz commented 4 years ago

#![forbid(unsafe_code)] annotation makes rustc abort compilation if there are any unsafe blocks in the crate, and exceptions cannot be made with allow/warn annotations.

Also add a badge on README.md to advertise the complete safety of rust-bcrypt.

Keats commented 4 years ago

Thanks!