dcl-rpc 1.0.0

Decentraland RPC Implementation
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate prost_build;
use std::io::Result;

fn main() -> Result<()> {
    // Tell Cargo that if the given file changes, to rerun this build script.
    println!("cargo:rerun-if-changed=src/rpc_protocol/index.proto");

    prost_build::compile_protos(&["src/rpc_protocol/index.proto"], &["src"])?;
    Ok(())
}