toddi 0.2.0

A TODO focuser built on top of todo.txt
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM docker.io/library/debian:trixie

ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && \
        apt install -y rustc cargo && \
        rm -rf /var/lib/apt/lists/*

RUN mkdir /toddi

WORKDIR /toddi

ENTRYPOINT ["cargo"]

CMD ["test"]