libedgegrid 0.0.1

This library implements an Authentication handler for the Akamai OPEN EdgeGrid Authentication scheme in Rust
1
2
3
4
5
6
7
8
9
10
// build.rs
extern crate vergen;

use vergen::*;

fn main() {
    let mut flags = Flags::all();
    flags.toggle(NOW);
    vergen(flags);
}