cedrus-cedar 0.2.0

Core library for Cedar Policy serialization and type bindings.
Documentation
1
2
3
4
5
6
7
8
9
extern crate prost_build;

use std::io::Result;
fn main() -> Result<()> {
    let mut config = prost_build::Config::new();
    config.compile_protos(&["src/cedar.proto"], &["src/"])?;

    Ok(())
}