Skip to main content

Crate doing

Crate doing 

Source
Expand description

A command-line tool for remembering what you were doing and tracking what you’ve done.

doing is a Rust rewrite of Brett Terpstra’s doing time-tracking CLI. It stores entries in a TaskPaper-formatted file organized by sections, with support for tags, notes, natural-language time expressions, and multiple export formats.

§Workspace crates

The application is split into focused library crates:

CratePurpose
doing_errorShared Error enum and Result alias
doing_timeNatural-language time parsing and duration formatting
doing_taskpaperTaskPaper document model, parser, and serializer
doing_configMulti-format config loading with env-var overrides
doing_opsDomain operations (filter, search, autotag, backup, undo)
doing_template%-token template language for entry rendering
doing_pluginsExport/import plugin registry and built-in formats

This crate provides the CLI layer: argument parsing, subcommand dispatch, editor integration, interactive prompts, and paged output.

Modules§

cli

Enums§

Error
Errors that can occur within the doing crate.

Type Aliases§

Result
A type alias for Result<T, doing::Error>.