-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc-todo.cabal
More file actions
39 lines (35 loc) · 1.4 KB
/
src-todo.cabal
File metadata and controls
39 lines (35 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
cabal-version: 3.0
name: src-todo
version: 0.4.0.0
license: MIT
author: LitFill
maintainer: marrazzy@gmail.com
homepage: https://github.com/LitFill/src-todo
bug-reports: https://github.com/LitFill/src-todo/issues
synopsis: A command-line tool for managing TODO comments in source code.
description: This tool provides a simple yet effective way to find, list, register, and manage TODO items embedded within text files. It can recursively search directories, parse TODOs with and without unique IDs, and persist changes back to the source files.
category: Development, Command-Line
tested-with: GHC == 9.12.2
build-type: Simple
extra-doc-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/LitFill/src-todo
common warnings
ghc-options: -Wall -Wextra
executable src-todo
import: warnings
main-is: Main.hs
build-depends:
base ^>=4.21.0.0,
directory ^>= 1.3,
time ^>= 1.14,
directory-tree ^>= 0.12,
flow ^>= 2.0,
attoparsec ^>= 0.14,
text ^>= 2.1,
optparse-applicative ^>= 0.19,
uuid ^>= 1.3,
uuid-types ^>= 1.0,
hs-source-dirs: .
default-language: GHC2024