A file-based task manager

Stuff for publishing

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