summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
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()
-}