-
Notifications
You must be signed in to change notification settings - Fork 1
/
taskwarrior-habitica-bridge.cabal
56 lines (54 loc) · 1.81 KB
/
taskwarrior-habitica-bridge.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
name: taskwarrior-habitica-bridge
version: 0.1.0.0
license: MIT
license-file: LICENSE
copyright: (c) 2019 Rob Whitaker
category: CLI
author: Rob Whitaker
maintainer: Rob Whitaker <[email protected]>
cabal-version: >= 1.10
synopsis: Sync between Taskwarrior and Habitica.
-- homepage:
-- bug-reports:
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
executable task2habitica
main-is: Main.hs
default-extensions: OverloadedStrings
ghc-options: -Wall
-fwarn-incomplete-uni-patterns
-fwarn-tabs
-fwarn-incomplete-record-updates
-fno-warn-missing-signatures
-fno-warn-type-defaults
-Werror
-Wwarn=unused-imports
-Wwarn=unused-local-binds
-Wwarn=unused-matches
-Wwarn=unused-do-bind
other-modules: App
, TaskUtils
, Taskwarrior
, Types
, Web
build-depends: aeson
, base
, bytestring
, containers
, directory
, filepath
, http-client
, mtl
, newtype-generics
, process
, req
, text
, time
, transformers
, unordered-containers
, utf8-string
, uuid
hs-source-dirs: src
default-language: Haskell2010