A file-based task manager

Stuff for publishing

+14 -1
+5 -1
Cargo.toml
··· 1 1 [package] 2 - name = "tsk" 2 + name = "tsk-cli" 3 3 version = "0.2.3" 4 4 edition = "2021" 5 5 publish = true 6 6 license = "MIT" 7 7 license-file = "LICENSE" 8 8 description = "A command-line first, file-system based task manager" 9 + repository = "https://codeberg.org/ngp/tsk" 10 + homepage = "https://tsk.ngp.computer/" 11 + readme = "readme" 12 + authors = ["Noah Pederson <noah@packetlost.dev>"] 9 13 10 14 [dependencies] 11 15 clap = { version = "4", features = ["derive", "env"] }
+9
readme
··· 36 36 tsk expects to run on POSIX-like systems. Microsoft Windows and other 37 37 non-UNIX-ey operating systems will never be directly supported. 38 38 39 + 40 + Installation 41 + ------------ 42 + 43 + ```sh 44 + cargo install --locked tsk-cli 45 + ``` 46 + 47 + 39 48 Building 40 49 -------- 41 50