crabtalk-core 0.0.15

Core types and traits for the Crabtalk agent runtime
Documentation
1
2
3
4
5
6
7
8
use std::io::Result;

fn main() -> Result<()> {
    prost_build::Config::new()
        .type_attribute(".", "#[derive(serde::Serialize, serde::Deserialize)]")
        .compile_protos(&["proto/crabtalk.proto"], &["proto/"])?;
    Ok(())
}