diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -3,9 +3,21 @@ name = "authzd" version = "0.1.0" edition = "2024" +[[bin]] +name = "authzd" +path = "src/main.rs" + +[lib] +name = "authzd" +path = "src/lib.rs" + [dependencies] envoy-types = "0.6.0" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tonic = "*" tonic-health = "0.13.1" tonic-reflection = "0.13.1" + +[dev-dependencies] +tokio-test = "0.4" +tonic-build = "0.10" |
