summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2024-11-21 21:14:40 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2024-11-21 21:14:40 +0100
commit48c2945172b88c35c187d298a35bf26716af4e91 (patch)
tree2af21ddb4dcacd191e07fef156609b7c1488ebaf /build.rs
parent6ed535387df0dffa72a10e601b8ea37c99345d84 (diff)
Switch to varlink as IPC protocol
This is a lot! Whole new design on top of a statefult varlink interface. You can now handle multiple request response cycles over a single connection. The error responses are lot more refined than just status codes with optional messages and finally part of the protocol. TODO: A lot of error handling needs to be improved.
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/build.rs b/build.rs
deleted file mode 100644
index e8ef3be..0000000
--- a/build.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use anyhow::Result;
-use protobuf_codegen::Codegen;
-
-fn main() -> Result<()> {
- Codegen::new()
- .protoc()
- .include(".")
- .input("jwebmail.proto")
- .out_dir("src/pb3")
- .run()
-}