Welcome to the Rust Learn Project! This project is a learning exercise for the Rust programming language, designed to help you get started with Rust and build a simple to-do list application.
Before you begin, ensure you have the following installed:
-
Clone the repository:
git clone https://github.com/yourusername/rust-learn.git cd rust-learn
-
Build the project:
make build
-
Run the project:
make run
-
Clean the project:
make clean
src/main.rs
: The main entry point of the application, containing the GUI logic and task management.
When you run the project, you should see the following output in the terminal:
Hello, Rust Learn Project!
We welcome contributions! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request. Follow these steps to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
Special thanks to the Rust community for their support and contributions.