-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmonalog.cabal
156 lines (148 loc) · 2.8 KB
/
monalog.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
155
156
cabal-version: 3.0
name: monalog
version: 1.0.0
synopsis:
author: goosedb
maintainer: goosedb@yandex.ru
library
ghc-options: -Wall
-- cabal-fmt: expand src
exposed-modules:
App
AttrMap
Buffer
Config
Consts
Column
Copy.Native
Copy.Osc52
Handler
Query
Query.Eval
Query.Parser
Query.Pretty
SourceFormat.Csv
SourceFormat.Json
SourceFormat.Utils
System
Text
Type.AppState
Type.AvailableSpace
Type.Event
Type.Field
Type.Log
Type.LogViewPosition
Type.MaxWidth
Type.Name
Type.Sort
Type.TBool
Type.WidgetSize
Ui
Vty
Widgets.Checkbox
Widgets.Dialog.Handler
Widgets.Dialog.Types
Widgets.Dialog.Ui
Widgets.Editor
Widgets.Fields.Handler
Widgets.Fields.Types
Widgets.Fields.Ui
Widgets.LogsView.Handler
Widgets.LogsView.Types
Widgets.LogsView.Ui
Widgets.LogView.Handler
Widgets.LogView.Tokenize
Widgets.LogView.Types
Widgets.LogView.Ui
Widgets.Query.Handler
Widgets.Query.Types
Widgets.Query.Ui
Widgets.Scrollbar.Horizontal
Widgets.Scrollbar.Vertical
Widgets.StatusBar.Handler
Widgets.StatusBar.Types
Widgets.StatusBar.Ui
Widgets.Types
build-depends:
, aeson
, attoparsec
, attoparsec-aeson
, base
, base64-bytestring
, brick >=2.2 && <3.0
, bytestring
, deepseq
, cassava
, streaming
, streaming-bytestring
, containers
, directory
, effectful
, filepath
, generic-lens
, jsonpath
, lens
, lens-aeson
, megaparsec
, mtl
, parser-combinators
, resourcet-effectful
, scientific
, stm
, text
, text-zipper
, time
, transformers
, typed-process
, vector
, vector-algorithms
, vty
, vty-crossplatform
, yaml
if os(windows)
build-depends: vty-windows >=0.2.0.2 && <0.3.0.0
else
build-depends:
, unix
, vty-unix
hs-source-dirs: src
default-language: GHC2021
ghc-options: -Wall
default-extensions:
AllowAmbiguousTypes
BlockArguments
ConstraintKinds
DeriveAnyClass
DeriveGeneric
DuplicateRecordFields
FlexibleContexts
ImplicitParams
ImportQualifiedPost
LambdaCase
MultiWayIf
NamedFieldPuns
OverloadedLabels
OverloadedRecordDot
OverloadedStrings
RecordWildCards
StrictData
TypeApplications
TypeFamilies
ViewPatterns
executable monalog
main-is: Main.hs
build-depends:
, base
, aeson
, bytestring
, containers
, cassava
, directory
, generic-lens
, lens
, monalog
, optparse-applicative
, text
ghc-options: -threaded -O2
hs-source-dirs: app
default-language: Haskell2010