summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml4
-rw-r--r--Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c754359..2cf2463 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,11 +4,11 @@ version = "0.1.0"
edition = "2024"
[[bin]]
-name = "helloworld-server"
+name = "authzd-server"
path = "src/server.rs"
[[bin]]
-name = "helloworld-client"
+name = "authzd-client"
path = "src/client.rs"
[dependencies]
diff --git a/Makefile b/Makefile
index a6c4a32..96b2f09 100644
--- a/Makefile
+++ b/Makefile
@@ -10,11 +10,11 @@ clean:
.PHONY: client
client:
- @cargo run --bin helloworld-client
+ @cargo run --bin authzd-client
.PHONY: server
server:
- @cargo run --bin helloworld-server
+ @cargo run --bin authzd-server
.PHONY: test
test: