utodo

Crates.ioutodo
lib.rsutodo
version2.0.1
sourcesrc
created_at2023-12-19 22:36:47.419304
updated_at2024-01-06 22:02:21.076219
descriptionA universal TODO list format.
homepage
repositoryhttps://gitlab.com/oglo-crates/utodo
max_upload_size
id1074690
size6,790
Jackson Novak (Oglo12)

documentation

README

UTodo

UTodo is a universal TODO list format, it uses TOML, but it uses TOML in a specific way.

# The version of UTodo that this list was generated with in mind.
utodo = [2, 0, 1] # This would be UTodo 2.0.1!

# Newly added tasks with no progress on them.
[pending]
items = [
  "Make a sandwich."
]

# Tasks with progress on them, but that are not finished.
[progress]
items = [
  "Make a cup of coffee.",
]

# Tasks that are finished.
[finished]
items = [
  "Brush teeth.",
]

There is also a standard for project integration:

Lists are stored in: $PROJECT_DIR/.utodo/lists/$LISTNAME (Note: there is no .toml on the end.)

Commit count: 4

cargo fmt