summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-19 11:40:27 -0600
committermo khan <mo@mokhan.ca>2025-06-19 11:40:27 -0600
commitf08ef97f4894fde8feff08bb91bed1e1c1105b83 (patch)
treefad101bae3ff8a1a9d7e2d312425c7fc89a08203 /Cargo.toml
parent594abe311e4dfbbcc477474561756bc5e5f0e539 (diff)
test: add tests
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fc79f61b..a13b9464 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"