feat: Introduce signed, verifiable entries with protobuf definitions, cryptographic signing, and hashing, updating the data model and architecture.

This commit is contained in:
2025-12-20 14:29:08 +01:00
parent 2f48483d0e
commit f153cba267
10 changed files with 667 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(
&["../proto/lattice.proto"],
&["../proto/"],
)?;
Ok(())
}