-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtick-tock-tui.cabal
120 lines (106 loc) · 2.34 KB
/
tick-tock-tui.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
cabal-version: 3.0
name: tick-tock-tui
version: 0.0.1
synopsis: bitcoin mempool tui
-- description:
stability: alpha
homepage: https://github.com/sectore/tick-tock-tui
license: MIT
license-file: LICENSE
author: jk
-- maintainer:
-- copyright:
category: TUI
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: TUI
other-modules:
TUI.Attr
TUI.Config
TUI.Events
TUI.Service.API
TUI.Service.Mempool
TUI.Service.Types
TUI.Storage
TUI.Types
TUI.Utils
TUI.Widgets.App
TUI.Widgets.Block
TUI.Widgets.Converter
TUI.Widgets.Countdown
TUI.Widgets.Fees
TUI.Widgets.Footer
TUI.Widgets.Header
TUI.Widgets.Loader
TUI.Widgets.Price
default-extensions:
DataKinds
LambdaCase
NoImportQualifiedPost
OverloadedStrings
build-depends:
, aeson >=0.8
, async
, base ^>=4.18.2.1
, brick ^>=2.5
, bytestring
, directory
, filepath
, http-conduit >=2.3.9
, microlens >=0.3.0.0
, microlens-mtl
, microlens-th
, mtl
, optparse-applicative
, stm
, text
, time
, transformers
, vty
, vty-crossplatform
hs-source-dirs: src
default-language: GHC2021
executable tick-tock-tui
import: warnings
main-is: Main.hs
-- other-modules:
default-extensions: NoImportQualifiedPost
build-depends:
, base ^>=4.18.2.1
, tick-tock-tui
hs-source-dirs: app
ghc-options: -threaded -Wall -Wcompat -O2
default-language: GHC2021
test-suite tick-tock-tui-test
import: warnings
default-language: GHC2021
other-modules:
TUI.Service.Types
TUI.Types
TUI.Utils
default-extensions:
DataKinds
LambdaCase
NoImportQualifiedPost
OverloadedStrings
type: exitcode-stdio-1.0
hs-source-dirs: test src
main-is: Main.hs
build-depends:
, aeson >=0.8
, base ^>=4.18.2.1
, brick ^>=2.5
, hspec
, microlens >=0.3.0.0
, microlens-th
, mtl
, stm
, text
, tick-tock-tui
, time
, vty