hawk 5.0.1

Hawk Implementation for Rust
Documentation
1
2
3
4
5
6
7
// Just check that we aren't asked to use an impossible configuration.
fn main() {
    assert!(
        !(cfg!(feature = "use_ring") && cfg!(feature = "use_openssl")),
        "Cannot configure `hawk` with both `use_ring` and `use_openssl`!"
    );
}