From fe924f9f5e11f1e5a3f0fe212321e355a0071633 Mon Sep 17 00:00:00 2001 From: Hacck3y <102517230+Hacck3y@users.noreply.github.com> Date: Tue, 5 May 2026 11:03:29 +0530 Subject: [PATCH] Update installation instructions in README.md Added rustup installation and version setting instructions. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fd7a67..a0ece73 100644 --- a/README.md +++ b/README.md @@ -125,15 +125,18 @@ RustHound supports Kerberos and GSSAPI. Therefore, it requires Clang and its dev For example: ```bash # Debian/Ubuntu -sudo apt-get -y update && sudo apt-get -y install gcc clang libclang-dev libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit musl-tools gcc-mingw-w64-x86-64 +sudo apt-get -y update && sudo apt-get -y install gcc clang libclang-dev libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit musl-tools gcc-mingw-w64-x86-64 rustup ``` Here is how to compile the "release" and "debug" versions using the **cargo** command. ```bash +rustup install 1.74.0 +rustup default 1.74.0 git clone https://github.com/OPENCYBER-FR/RustHound cd RustHound cargo build --release +target/release/rusthound -h # or debug version cargo b ```