-
Notifications
You must be signed in to change notification settings - Fork 6
/
orgstat.cabal
154 lines (150 loc) · 5.45 KB
/
orgstat.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
name: orgstat
version: 0.1.10
synopsis: Statistics visualizer for org-mode
license: GPL-3
license-file: LICENSE
extra-source-files: CHANGES.md
homepage: https://github.com/volhovM/orgstat
author: Mikhail Volkhov <[email protected]>, Zhenya Vinogradov <[email protected]>
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: OrgStat.Ast
, OrgStat.Config
, OrgStat.CLI
, OrgStat.Helpers
, OrgStat.IO
, OrgStat.Logging
, OrgStat.Logic
, OrgStat.Parser
, OrgStat.Scope
, OrgStat.Outputs
, OrgStat.Outputs.Block
, OrgStat.Outputs.Class
, OrgStat.Outputs.Summary
, OrgStat.Outputs.Script
, OrgStat.Outputs.Timeline
, OrgStat.Outputs.Types
, OrgStat.Util
, OrgStat.WorkMonad
, Paths_orgstat
build-depends: aeson >= 0.11.2.0
, attoparsec
, ansi-terminal
, base >=4.13 && <4.15
, boxes >= 0.1.4
, bytestring
, colour >= 2.3.3
, containers >= 0.5.7.1
, data-default >= 0.7.1.1
, diagrams-lib
, diagrams-svg
, directory
, exceptions >= 0.8.3
, filepath
, formatting
, fmt >= 0.6
, hashable >= 1.2.4.0
, lens >= 4.14
, mtl >= 2.2.1
, optparse-simple
, orgmode-parse >= 0.2.3 && < 0.3
, process >= 1.6.3.0
, text >= 1.2.2.1
, time >= 1.6.0.1
, turtle >= 1.2.8
, universum >= 1.5.0
, yaml >= 0.8.21.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions: GeneralizedNewtypeDeriving
StandaloneDeriving
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
FunctionalDependencies
NoImplicitPrelude
OverloadedStrings
ScopedTypeVariables
RecordWildCards
TypeApplications
TupleSections
ViewPatterns
LambdaCase
MultiWayIf
executable orgstat
main-is: Main.hs
other-modules: Paths_orgstat
build-depends: base
, bytestring
, directory
, exceptions
, filepath
, formatting
, optparse-simple
, orgstat
, universum
hs-source-dirs: src/cli
default-language: Haskell2010
ghc-options: -threaded -Wall -O2
default-extensions: NoImplicitPrelude
OverloadedStrings
RecordWildCards
TypeApplications
executable orgstatarch
main-is: Main.hs
other-modules: Paths_orgstat
build-depends: base
, attoparsec
, bytestring
, directory
, exceptions
, filepath
, formatting
, optparse-simple
, orgstat
, time
, turtle
, text
, orgmode-parse
, unordered-containers
, universum
hs-source-dirs: src/arch
default-language: Haskell2010
ghc-options: -threaded -Wall -O2
default-extensions: NoImplicitPrelude
OverloadedStrings
RecordWildCards
LambdaCase
TypeApplications
TupleSections
test-suite orgstat-test
main-is: Test.hs
other-modules: Spec
, GlobalSpec
build-depends: HUnit >= 1.3.1.2
, QuickCheck
, base
, colour >= 2.3.3
, hspec
, orgstat
, lens
, quickcheck-text >= 0.1.2.1
, time >= 1.6.0.1
, text
, transformers
, universum >= 0.5.1.1
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts
-Wall
-fno-warn-orphans
-O2
default-extensions: NoImplicitPrelude
OverloadedStrings
RecordWildCards
TypeApplications
GeneralizedNewtypeDeriving