forked from maralorn/haskell-taskwarrior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskwarrior.cabal
74 lines (66 loc) · 2.08 KB
/
taskwarrior.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
cabal-version: 2.4
name: taskwarrior
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.2.3
synopsis: Types and aeson instances for taskwarrior tasks
description:
Types and aeson instances for the https://taskwarrior.org task import/export feature
homepage: https://github.com/maralorn/haskell-taskwarrior
bug-reports: https://github.com/maralorn/haskell-taskwarrior/issues
license: AGPL-3.0-or-later
license-file: LICENSE
author: Malte Brandy <[email protected]>
maintainer: Malte Brandy <[email protected]>
category: Taskwarrior, Data
extra-source-files:
CHANGELOG.md
README.md
library
ghc-options: -Wall
exposed-modules:
Taskwarrior.Annotation
Taskwarrior.IO
Taskwarrior.Mask
Taskwarrior.Priority
Taskwarrior.Status
Taskwarrior.Task
Taskwarrior.Time
Taskwarrior.UDA
default-extensions:
LambdaCase
OverloadedStrings
RecordWildCards
StrictData
build-depends:
, aeson ^>=1.4.2.0
, base >=4.11 && <4.14
, bytestring ^>=0.10.8.2
, process ^>=1.6.5.0
, random ^>=1.1
, text ^>=1.2.3.0
, time >=1.8.0.2 && <1.11
, unordered-containers ^>=0.2.9.0
, uuid ^>=1.3.13
hs-source-dirs: src
default-language: Haskell2010
test-suite test-taskwarrior
ghc-options: -Wall -Wno-orphans
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover -any
other-modules: TaskSpec
build-depends:
, aeson
, base
, hspec ^>=2.7.1
, QuickCheck >=2.13.2 && <2.15
, quickcheck-instances ^>=0.3.22
, taskwarrior
, text
, time
, unordered-containers
, uuid
default-language: Haskell2010