To run the program, follow these steps:
First, you need to install Rust and Cargo on your system. You can download the installer from the official Rust website: https://www.rust-lang.org/tools/install.
Clone the repository using the following command:
git clone https://github.com/UsboKirishima/pwds.git
Navigate to the project directory:
cd pwds
Build and run the program using the following command:
cargo run
This will compile the program and run it. You should see the graphical interface of the password manager.
To run the program in debug mode, use the following command:
cargo run --debug
This will enable debug logging and allow you to see more detailed information about the program's execution.
To run the program in release mode, use the following command:
cargo run --release
This will optimize the program for performance and disable debug logging.
If you encounter any issues while running the program, you can try the following:
- Check the console output for error messages.
- Make sure you have the latest version of Rust and Cargo installed.
- Try running the program in debug mode to see more detailed information about the error.
By following these steps, you should be able to run the password manager program successfully.