gabrielsimmer.com/build.rs
Gabriel Simmer 8a65ef8cb4
Some checks failed
Fly Deploy / Deploy app (push) Failing after 3m6s
Implement basic gossip protocol
Disabled unless peers are provided, communicates with other
instances (up to 3, and then a random selection of a third of the
available hosts). Still to do:

 - [ ] DNS based peer discovery
 - [ ] Probing of instances / healthchecks
 - [ ] Test propogation of membership changes/additions
2023-10-07 17:15:15 +01:00

7 lines
138 B
Rust

use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["protobuf/items.proto"], &["protobuf/"])?;
Ok(())
}