.PHONY: help help: @echo "Available targets:" @echo " server - Run the gRPC server" @echo " test - Run the tests" .PHONY: clean clean: @cargo clean .PHONY: server server: @cargo run --bin helloworld-server .PHONY: test test: @cargo test .PHONY: grpcurl grpcurl: @grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' '[::1]:50051' helloworld.Greeter/SayHello