From b06dff2457591c7e3dfdd5f2ea3a7628c66bb6a9 Mon Sep 17 00:00:00 2001 From: melroy12 Date: Sun, 22 Jun 2025 16:56:06 +0900 Subject: [PATCH 1/6] change in the contributing.Docker File --- contributing.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contributing.Dockerfile b/contributing.Dockerfile index da6470cc9..4e7443c45 100644 --- a/contributing.Dockerfile +++ b/contributing.Dockerfile @@ -1,5 +1,7 @@ +# Dockerfile for RustScan development environment +# Provides a containerized setup with Rust, nmap, and development tools FROM rust # Install nmap first. RUN apt-get update -qy && apt-get install -qy nmap -# Then install rustfmt and clippy for cargo. +# Then install rustfmt for code formatting and clippy for linting. RUN rustup component add rustfmt clippy \ No newline at end of file From 534e31ff6a4a40eb098561c7fb8ebedca2c22641 Mon Sep 17 00:00:00 2001 From: melroy12 Date: Sun, 22 Jun 2025 17:21:31 +0900 Subject: [PATCH 2/6] typo in the tui.rs file ! --- src/tui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui.rs b/src/tui.rs index 1d7cd3a52..66810cc88 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -43,7 +43,7 @@ macro_rules! output { ($name:expr) => { println!( "{} {}", - RGansi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), + ansi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), $name ); }; From 12021f5a6077dd204083a89bc0c56ee9187558de Mon Sep 17 00:00:00 2001 From: melroy12 Date: Mon, 30 Jun 2025 07:24:33 +0900 Subject: [PATCH 3/6] added x-cmd to the readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index ddf4867d3..ef37e5a0e 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,12 @@ Arch: yay rustscan ``` +x-cmd: + +``` + x env use rustscan +``` + # ✨ Features - Scans all 65k ports in **3 seconds**. From d88125c369df0a6309495681ca7136c4b34e922e Mon Sep 17 00:00:00 2001 From: melroy12 Date: Mon, 30 Jun 2025 07:31:50 +0900 Subject: [PATCH 4/6] merge --- contributing.Dockerfile | 2 +- src/tui.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing.Dockerfile b/contributing.Dockerfile index 4e7443c45..5fa370886 100644 --- a/contributing.Dockerfile +++ b/contributing.Dockerfile @@ -3,5 +3,5 @@ FROM rust # Install nmap first. RUN apt-get update -qy && apt-get install -qy nmap -# Then install rustfmt for code formatting and clippy for linting. +# Then install rustfmt and clippy cargo. RUN rustup component add rustfmt clippy \ No newline at end of file diff --git a/src/tui.rs b/src/tui.rs index 66810cc88..fc171ad8d 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -43,7 +43,7 @@ macro_rules! output { ($name:expr) => { println!( "{} {}", - ansi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), + Ransi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), $name ); }; From faf0877d463c8a8868ff64da946da2d809f32108 Mon Sep 17 00:00:00 2001 From: melroy12 Date: Mon, 30 Jun 2025 07:33:08 +0900 Subject: [PATCH 5/6] merge1 --- contributing.Dockerfile | 2 +- src/tui.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing.Dockerfile b/contributing.Dockerfile index 5fa370886..a21335323 100644 --- a/contributing.Dockerfile +++ b/contributing.Dockerfile @@ -3,5 +3,5 @@ FROM rust # Install nmap first. RUN apt-get update -qy && apt-get install -qy nmap -# Then install rustfmt and clippy cargo. +# Then install rustfmt and clippy for cargo. RUN rustup component add rustfmt clippy \ No newline at end of file diff --git a/src/tui.rs b/src/tui.rs index fc171ad8d..1d7cd3a52 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -43,7 +43,7 @@ macro_rules! output { ($name:expr) => { println!( "{} {}", - Ransi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), + RGansi_term::Colour::RGB(0, 255, 9).bold().paint("[>]"), $name ); }; From 1d91931c17d7fa060834c63d4016ee347f94f6aa Mon Sep 17 00:00:00 2001 From: melroy12 Date: Mon, 30 Jun 2025 07:33:51 +0900 Subject: [PATCH 6/6] rem,ove comments --- contributing.Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/contributing.Dockerfile b/contributing.Dockerfile index a21335323..da6470cc9 100644 --- a/contributing.Dockerfile +++ b/contributing.Dockerfile @@ -1,5 +1,3 @@ -# Dockerfile for RustScan development environment -# Provides a containerized setup with Rust, nmap, and development tools FROM rust # Install nmap first. RUN apt-get update -qy && apt-get install -qy nmap