To build this project, you will need the following:
- Rust
- OpenSSL development libraries
Run the following command to install Rust via rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shAfter installation, configure your shell with:
source $HOME/.cargo/envVerify installation:
rustc --versionsudo apt update
sudo apt install pkg-config libssl-devsudo dnf install pkg-config openssl-develsudo pacman -S opensslIf OpenSSL is not detected during the build, manually set the environment variables:
export OPENSSL_DIR=/usr/lib/ssl # Adjust based on your system
export PKG_CONFIG_PATH=$OPENSSL_DIR/lib/pkgconfigOnce all dependencies are installed, build the project with:
cargo build