-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaphrograph.cabal
More file actions
152 lines (148 loc) · 3.32 KB
/
aphrograph.cabal
File metadata and controls
152 lines (148 loc) · 3.32 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
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
cabal-version: 2.0
name: aphrograph
version: 2.0.0.0
license: GPL-3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
library
exposed-modules:
App
App.Args
App.Components
App.Config
App.Logging
App.State
Display.Graph
Display.GraphWidget
Display.TimeDialogueWidget
Display.Labels
Display.Projection
Display.Projection.Scalable
Display.Types
Display.Widgets
Events
Events.Types
Graphite
Graphite.Types
Normalisation
other-modules:
Paths_aphrograph
hs-source-dirs:
./src
default-extensions: RecordWildCards LambdaCase OverloadedStrings MultiParamTypeClasses StrictData
ghc-options: -Wall -O2 -fexcess-precision -funfolding-use-threshold=16 -fwrite-ide-info -fwarn-unused-binds -fwarn-unused-imports -hiedir=.hie
build-depends:
Decimal
, aeson
, array
, base
, brick >=0.57
, bytestring
, containers
, formatting
, generic-data
, http-api-data
, http-client
, lens
, lifted-base
, mmorph
, modern-uri
, monad-control
, monad-logger
, mtl
, optparse-simple
, relude
, req
, open-union
, text
, time
, transformers
, transformers-base
, type-fun
, vector
, vty
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
default-language: Haskell2010
executable aphrograph
main-is: Main.hs
other-modules:
Paths_aphrograph
hs-source-dirs:
./app
default-extensions: RecordWildCards LambdaCase OverloadedStrings MultiParamTypeClasses StrictData
ghc-options: -Wall -O2 -fexcess-precision -funfolding-use-threshold=16 -fwrite-ide-info -fwarn-unused-binds -fwarn-unused-imports -hiedir=.hie -threaded
build-depends:
aphrograph
, base
, brick >=0.57
, monad-control
, monad-logger
, mmorph
, relude
, transformers-base
, time
, vector
, vty
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
default-language: Haskell2010
test-suite aphrograph-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
App.StateSpec
ArbitraryInstances
CommonProperties
ComponentMock
DerivedArbitraryInstances
Display.GraphSpec
Display.ProjectionSpec
Display.WidgetsSpec
DisplaySpec
EventsSpec
GraphiteSpec
LabelsSpec
NormalisationSpec
Test.Orphans
Test.Tools
WidgetsSpec
Paths_aphrograph
hs-source-dirs:
./test
default-extensions: RecordWildCards LambdaCase OverloadedStrings MultiParamTypeClasses StrictData
ghc-options: -Wall -O2 -fexcess-precision -funfolding-use-threshold=16 -fwrite-ide-info -fwarn-unused-binds -fwarn-unused-imports -hiedir=.hie
build-depends:
Decimal
, QuickCheck
, aeson
, aphrograph
, base
, brick >=0.55
, containers
, formatting
, hourglass
, hspec
, http-client
, lens
, monad-control
, monad-logger
, mtl
, quickcheck-arbitrary-adt
, quickcheck-instances
, quickcheck-transformer
, random
, relude
, req
, time
, transformers-base
, vector
, vty
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
default-language: Haskell2010