summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
committermo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
commitd78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 (patch)
tree40d749119aee2106e56173ceeddd63fffc6c574b /Cargo.toml
parentb7d47b2a6c00925f6ae9640700fcda0d888b0486 (diff)
feat: create an grpc server
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d75ace8..c754359 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,4 +3,18 @@ name = "authzd"
version = "0.1.0"
edition = "2024"
+[[bin]]
+name = "helloworld-server"
+path = "src/server.rs"
+
+[[bin]]
+name = "helloworld-client"
+path = "src/client.rs"
+
[dependencies]
+prost = "0.13"
+tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
+tonic = "*"
+
+[build-dependencies]
+tonic-build = "*"