endpoint-sec 0.5.0

High-level Rust wrappers around the Endpoint Security Framework
1
2
3
4
5
6
7
8
9
10
11
//! Dummy libary used to separate trybuild since it is causing spurious recompilations because we change
//! the binaries by signing them.

#[cfg(test)]
mod tests {
    #[test]
    fn test_trybuild_client_ui() {
        let t = trybuild::TestCases::new();
        t.compile_fail("tests/ui/*.rs");
    }
}