rust-todos

Crates.iorust-todos
lib.rsrust-todos
version1.0.0
sourcesrc
created_at2024-06-21 00:43:29.113198
updated_at2024-06-22 03:16:16.966936
descriptionA simple rust cli tool for managing todos
homepagehttps://github.com/aidan-wallace/rust-todos
repositoryhttps://github.com/aidan-wallace/rust-todos
max_upload_size
id1278946
size49,952
Aidan Wallace (Aidan-Wallace)

documentation

README

Rust Todo cli app

GitHub All Releases Crates.io Docker Pulls

A simple rust cli tool for managing todos

Implements

Usage

rust-todos <command> <args>

commands

command description example
[null] list current todos rust-todos
help Display help menu rust-todos help
add Add a todo rust-todos add do laundry
done Complete todos by index. (get index by running rust-todos) rust-todos done 1 5
clear Clear all todos rust-todos clear

options

option description example
--fill fill the db with fake todos rust-todos --fill

run app

cargo

cargo run help

docker

# build image
docker build -t aidanwallace/rust-todos .

# run image
docker run --rm -it -v ./data:/data aidanwallace/rust-todos help
Commit count: 10

cargo fmt