]> git.lizzy.rs Git - connect-rs.git/blobdiff - examples/tcp-client/build.rs
remove dependency on protobuf and introduce basic custom wire format
[connect-rs.git] / examples / tcp-client / build.rs
diff --git a/examples/tcp-client/build.rs b/examples/tcp-client/build.rs
deleted file mode 100644 (file)
index aa2ff90..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-fn main() -> Result<(), Box<dyn std::error::Error>> {
-    protobuf_codegen_pure::Codegen::new()
-        .out_dir("src/schema")
-        .inputs(&["schema/hello_world.proto"])
-        .include("schema")
-        .run()
-        .expect("Codegen failed.");
-    Ok(())
-}