diff options
author | Brian Warner <warner@lothar.com> | 2018-07-19 16:40:06 -0700 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-07-19 16:40:06 -0700 |
commit | 475d722f4a2a0c0d007fd3cb5dd8a26f7ed04b42 (patch) | |
tree | b2898a612a9554dd981e9d4f3e166b372583d7e5 /src | |
parent | 47702913072fd1410269fca830bc4ac13cc1edf3 (diff) | |
download | PAKEs-475d722f4a2a0c0d007fd3cb5dd8a26f7ed04b42.tar.xz |
forbid unsafe_code, and warnings durings tests
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#![forbid(unsafe_code)] +#![cfg_attr(test, deny(warnings))] + extern crate curve25519_dalek; extern crate hex; extern crate hkdf; |