evercrypt_tiny-sys 0.1.1

A tiny build of EverCrypt's c89-distribution with autogenerated bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use config::Configuration;
mod config;
mod files;
mod make;

use make::Make;

fn main() {
    // Build the library
    let config = Configuration::new();
    let make = Make::new(config);
    make.build();
}