From 032302e9d036d9dfda01ab3d717624b3f06771c5 Mon Sep 17 00:00:00 2001 From: Akhil Velagapudi Date: Tue, 5 Jan 2021 16:01:45 -0500 Subject: [PATCH] don't format generated code in tonic-health (#501) --- tonic-health/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tonic-health/build.rs b/tonic-health/build.rs index 94758f1..350e1dd 100644 --- a/tonic-health/build.rs +++ b/tonic-health/build.rs @@ -2,7 +2,7 @@ fn main() -> Result<(), Box> { tonic_build::configure() .build_server(true) .build_client(false) - .format(true) + .format(false) .compile(&["proto/health.proto"], &["proto/"])?; Ok(())