https://github.com/grayoj/rustydo
A todo program in rust. Sighs. Rust is hard.
https://github.com/grayoj/rustydo
Last synced: 11 months ago
JSON representation
A todo program in rust. Sighs. Rust is hard.
- Host: GitHub
- URL: https://github.com/grayoj/rustydo
- Owner: grayoj
- Created: 2023-01-15T10:04:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-15T10:36:52.000Z (over 3 years ago)
- Last Synced: 2025-04-09T23:04:53.664Z (about 1 year ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Rustydo
A simple rust todo application adapted from FreecodeCamp in order to learn rust, but as sad as it seems I may not touch it again.
## Requirements
- Rust.
- Cargo.
- Rust Toolchain.
## Setup
- Clone. Run: `git clone https://github.com/grayoj/rustydo.git`
- Update packages: `sudo apt update`
- Install rustup: `curl https://sh.rustup.rs -sSf | sh`
- Run the default installation.
- Include rust on your machine's path `sudo source "$HOME/.cargo/env"`
- Verify your installation `rustc -V`
## Running the Program
To run the program from your terminal:
```shell
cd rustydo/ && cargo run
```
This should compile and run the program for you.