nodo_runtime 0.18.4

Runtime for NODO applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2025 David Weikersdorfer

use std::io::Result;

fn main() -> Result<()> {
    let mut config = prost_build::Config::new();

    config
        .type_attribute(".", "#[derive(serde::Serialize, serde::Deserialize)]")
        .compile_protos(
            &["protos/configure.proto", "protos/report.proto"],
            &["src/protos"],
        )?;

    Ok(())
}