-
Notifications
You must be signed in to change notification settings - Fork 35
/
toodles.cabal
160 lines (154 loc) · 3.96 KB
/
toodles.cabal
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: c8ccbbd4e2a437d577d621689f01748517867d25b786d1975a314d43043295b8
name: toodles
version: 1.2.3
synopsis: Manage the TODO entries in your code
description: Toodles scrapes your entire repository for TODO entries and organizes them so you can manage your project directly from the code. View, filter, sort, and edit your TODO\'s with an easy to use web application. When you make changes via toodles, the edits will be applied directly the TODO entries in your code. When you\'re done, commit and push your changes to share them with your team!
category: Project Management
homepage: https://github.com/aviaviavi/toodles#readme
bug-reports: https://github.com/aviaviavi/toodles/issues
author: Avi Press
maintainer: [email protected]
copyright: 2019 Avi Press
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
data-files:
web/js/app.js
web/js/jquery-3.3.1.min.js
web/js/vue.js
web/html/index.html
web/css/bulma.min.css
web/css/font-awesome.min.css
web/css/toodles.css
web/fonts/fontawesome-webfont.woff
web/fonts/fontawesome-webfont.woff2
web/img/favicon.png
verify.py
toodles-license-public-key.pem
source-repository head
type: git
location: https://github.com/aviaviavi/toodles
library
exposed-modules:
Parse
Types
Config
ToodlesApi
Server
License
other-modules:
Paths_toodles
hs-source-dirs:
src
ghc-options: -Wall -Wcompat
build-depends:
MissingH >=1.4.0.1
, RSA >=2.3.0
, aeson ==1.3.1.1
, base >=4.4.0 && <5
, base64-bytestring ==1.0.0.1
, blaze-html ==0.9.1.1
, bytestring >=0.10.8.2
, cmdargs ==0.10.20
, directory ==1.3.1.5
, extra ==1.6.13
, megaparsec ==6.5.0
, process >=1.6.3.0
, regex-posix ==0.95.2
, servant ==0.14.1
, servant-blaze ==0.8
, servant-server ==0.14.1
, strict ==0.3.2
, text ==1.2.3.1
, time >=1.8.0.2
, wai ==3.2.1.2
, warp ==3.2.25
, yaml ==0.8.32
default-language: Haskell2010
executable toodles
main-is: Main.hs
other-modules:
Config
License
Parse
Server
ToodlesApi
Types
Paths_toodles
hs-source-dirs:
app
src
ghc-options: -Wall -Wcompat -threaded -rtsopts -O3 -Wall -with-rtsopts=-N
build-depends:
MissingH >=1.4.0.1
, RSA >=2.3.0
, aeson ==1.3.1.1
, base >=4.4.0 && <5
, base64-bytestring ==1.0.0.1
, blaze-html ==0.9.1.1
, bytestring >=0.10.8.2
, cmdargs ==0.10.20
, directory ==1.3.1.5
, extra ==1.6.13
, filepath ==1.4.2
, megaparsec ==6.5.0
, process >=1.6.3.0
, regex-posix ==0.95.2
, servant ==0.14.1
, servant-blaze ==0.8
, servant-server ==0.14.1
, strict ==0.3.2
, text ==1.2.3.1
, time >=1.8.0.2
, wai ==3.2.1.2
, warp ==3.2.25
, yaml ==0.8.32
default-language: Haskell2010
test-suite toodles-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Config
License
Parse
Server
ToodlesApi
Types
Paths_toodles
hs-source-dirs:
test
src
ghc-options: -Wall -Wcompat -threaded -rtsopts -with-rtsopts=-N -w
build-depends:
MissingH >=1.4.0.1
, aeson ==1.3.1.1
, base >=4.4.0 && <5
, base64-bytestring ==1.0.0.1
, blaze-html ==0.9.1.1
, bytestring >=0.10.8.2
, cmdargs ==0.10.20
, directory ==1.3.1.5
, extra ==1.6.13
, hspec >=2.4.4
, hspec-expectations >=0.8.2
, megaparsec ==6.5.0
, process >=1.6.3.0
, regex-posix ==0.95.2
, servant ==0.14.1
, servant-blaze ==0.8
, servant-server ==0.14.1
, strict ==0.3.2
, text ==1.2.3.1
, time >=1.8.0.2
, toodles
, wai ==3.2.1.2
, warp ==3.2.25
, yaml ==0.8.32
default-language: Haskell2010