From 0366f66b4208fe0998eb9c7ddfdc25d41759bef9 Mon Sep 17 00:00:00 2001 From: Eli Peter <54954007+ecpeter23@users.noreply.github.com> Date: Wed, 25 Jun 2025 03:46:21 +0200 Subject: [PATCH] Fix/updated binary name (#18) * feat: Add binary configuration for nyx in Cargo.toml * fix: Set default binary to nyx in Cargo.toml --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 15158691..2ac638d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,11 +11,16 @@ documentation = "https://github.com/ecpeter23/nyx#readme" keywords = ["security", "vulnerability", "scanner", "cli", "automation"] categories = ["command-line-utilities", "development-tools" ] readme = "README.md" +default-run = "nyx" exclude = [ "assets/", ".github/", ] +[[bin]] +name = "nyx" +path = "src/main.rs" + [dev-dependencies] tempfile = "3"