summaryrefslogtreecommitdiffstats
path: root/third_party/rust/hawk/build.rs
blob: a5e367f69b3bdf8296a74d528f7414e6958c9156 (plain)
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`!"
    );
}