summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-17 12:37:14 -0600
committermo khan <mo@mokhan.ca>2025-07-17 12:37:14 -0600
commit814a864184affab624f7d1e5314cd1f55d72b90c (patch)
tree0271aea841154d214471427bfcfa9d928636749e /build.rs
parent09e0702b7519fd06f6ba953eabae1b838896158b (diff)
refactor: remove cedar
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs32
1 files changed, 16 insertions, 16 deletions
diff --git a/build.rs b/build.rs
index 57c72ec4..318f9bc9 100644
--- a/build.rs
+++ b/build.rs
@@ -1,21 +1,21 @@
use std::io::Result;
fn main() -> Result<()> {
- tonic_build::configure()
- .build_server(false)
- .out_dir("src/rpc")
- .compile_protos(
- &[
- "etc/proto/authzed/authzed/api/v1/core.proto",
- "etc/proto/authzed/authzed/api/v1/debug.proto",
- "etc/proto/authzed/authzed/api/v1/error_reason.proto",
- "etc/proto/authzed/authzed/api/v1/experimental_service.proto",
- "etc/proto/authzed/authzed/api/v1/openapi.proto",
- "etc/proto/authzed/authzed/api/v1/permission_service.proto",
- "etc/proto/authzed/authzed/api/v1/schema_service.proto",
- "etc/proto/authzed/authzed/api/v1/watch_service.proto",
- ],
- &["etc/proto/authzed"],
- )?;
+ // tonic_build::configure()
+ // .build_server(false)
+ // .out_dir("src/rpc")
+ // .compile_protos(
+ // &[
+ // "etc/proto/authzed/authzed/api/v1/core.proto",
+ // "etc/proto/authzed/authzed/api/v1/debug.proto",
+ // "etc/proto/authzed/authzed/api/v1/error_reason.proto",
+ // "etc/proto/authzed/authzed/api/v1/experimental_service.proto",
+ // "etc/proto/authzed/authzed/api/v1/openapi.proto",
+ // "etc/proto/authzed/authzed/api/v1/permission_service.proto",
+ // "etc/proto/authzed/authzed/api/v1/schema_service.proto",
+ // "etc/proto/authzed/authzed/api/v1/watch_service.proto",
+ // ],
+ // &["etc/proto/authzed"],
+ // )?;
Ok(())
}