diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-18 15:31:26 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-18 15:31:26 -0600 |
| commit | d78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 (patch) | |
| tree | 40d749119aee2106e56173ceeddd63fffc6c574b /Cargo.toml | |
| parent | b7d47b2a6c00925f6ae9640700fcda0d888b0486 (diff) | |
feat: create an grpc server
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 = "*" |
