walrus-core 0.0.8

Core types and traits for the Walrus 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/walrus.proto", "proto/ext.proto"], &["proto/"])?;
    Ok(())
}