-
Notifications
You must be signed in to change notification settings - Fork 1
/
asif.cabal
224 lines (214 loc) · 10.5 KB
/
asif.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
cabal-version: 2.2
name: asif
version: 6.0.4
description: Library for creating and querying segmented feeds. Please see <https://github.com/arbor/asif#readme>
synopsis: Library for creating and querying segmented feeds
category: Services
homepage: https://github.com/arbor/asif#readme
bug-reports: https://github.com/arbor/asif/issues
author: Arbor Networks
maintainer: mayhem@arbor.net
copyright: Arbor Networks
license: MIT
license-file: LICENSE
tested-with: GHC == 8.8.2, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2
build-type: Simple
extra-source-files: ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/arbor/asif
common base { build-depends: base >= 4.7 && < 5 }
common attoparsec { build-depends: attoparsec >= 0.13 }
common binary { build-depends: binary >= 0.8 }
common bytestring { build-depends: bytestring >= 0.10 }
common conduit { build-depends: conduit >= 1.3 }
common conduit-combinators { build-depends: conduit-combinators >= 1.3 }
common conduit-extra { build-depends: conduit-extra >= 1.3 }
common containers { build-depends: containers >= 0.5 }
common cpu { build-depends: cpu >= 0.1 }
common directory { build-depends: directory >= 1.3 }
common doctest { build-depends: doctest >= 0.16.2 && < 0.17 }
common doctest-discover { build-depends: doctest-discover >= 0.2 && < 0.3 }
common either { build-depends: either >= 5.0 }
common exceptions { build-depends: exceptions >= 0.10 }
common foldl { build-depends: foldl >= 1.4 }
common generic-lens { build-depends: generic-lens >= 1.1.0.0 }
common hedgehog { build-depends: hedgehog >= 1.0 }
common hspec { build-depends: hspec >= 2.7 }
common hw-bits { build-depends: hw-bits >= 0.7 }
common hw-hspec-hedgehog { build-depends: hw-hspec-hedgehog >= 0.1 }
common hw-ip { build-depends: hw-ip >= 2.3 }
common lens { build-depends: lens >= 4.17 }
common network { build-depends: network >= 2 }
common old-locale { build-depends: old-locale >= 1.0 }
common optparse-applicative { build-depends: optparse-applicative >= 0.14 }
common profunctors { build-depends: profunctors >= 5.3 }
common resourcet { build-depends: resourcet >= 1.2.2 }
common temporary-resourcet { build-depends: temporary-resourcet >= 0.1 }
common text { build-depends: text >= 1.2 }
common thyme { build-depends: thyme >= 0.3 }
common transformers { build-depends: transformers >= 0.5 }
common vector { build-depends: vector >= 0.12 }
common config
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -msse4.2
default-language: Haskell2010
common asif
build-depends: asif
library
import: base, config
, attoparsec
, binary
, bytestring
, conduit
, conduit-combinators
, conduit-extra
, containers
, cpu
, either
, exceptions
, foldl
, generic-lens
, hw-bits
, hw-ip
, lens
, network
, old-locale
, profunctors
, resourcet
, temporary-resourcet
, text
, thyme
, transformers
, vector
exposed-modules: Arbor.File.Format.Asif
Arbor.File.Format.Asif.ByIndex
Arbor.File.Format.Asif.ByteString
Arbor.File.Format.Asif.ByteString.Builder
Arbor.File.Format.Asif.ByteString.Lazy
Arbor.File.Format.Asif.Data.Ip
Arbor.File.Format.Asif.Data.Read
Arbor.File.Format.Asif.Extract
Arbor.File.Format.Asif.Format
Arbor.File.Format.Asif.Format.Text
Arbor.File.Format.Asif.Get
Arbor.File.Format.Asif.IO
Arbor.File.Format.Asif.Lookup
Arbor.File.Format.Asif.Segment
Arbor.File.Format.Asif.Type
Arbor.File.Format.Asif.Whatever
Arbor.File.Format.Asif.Write
other-modules: Arbor.File.Format.Asif.Format.SegmentValue
Arbor.File.Format.Asif.Format.Type
Arbor.File.Format.Asif.List
Arbor.File.Format.Asif.Maybe
Arbor.File.Format.Asif.Text
Paths_asif
autogen-modules: Paths_asif
hs-source-dirs: src
default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
executable asif
import: base, config
, asif
, attoparsec
, binary
, bytestring
, conduit
, conduit-combinators
, conduit-extra
, containers
, cpu
, directory
, either
, exceptions
, foldl
, generic-lens
, hw-bits
, hw-ip
, lens
, network
, old-locale
, optparse-applicative
, profunctors
, resourcet
, temporary-resourcet
, text
, thyme
, transformers
, vector
main-is: Main.hs
other-modules: App.Commands
App.Commands.Dump
App.Commands.DumpBitmap
App.Commands.DumpOnly
App.Commands.EncodeFiles
App.Commands.ExtractFiles
App.Commands.ExtractSegments
App.Commands.Ls
App.Commands.Options.Type
App.Dump
App.IO
Paths_asif
autogen-modules: Paths_asif
hs-source-dirs: app
default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
ghc-options: -threaded -rtsopts -O2
test-suite asif-test
import: base, config
, asif
, attoparsec
, binary
, bytestring
, conduit
, conduit-combinators
, conduit-extra
, containers
, cpu
, either
, exceptions
, foldl
, generic-lens
, hedgehog
, hspec
, hw-bits
, hw-hspec-hedgehog
, hw-ip
, lens
, network
, old-locale
, profunctors
, resourcet
, temporary-resourcet
, text
, thyme
, transformers
, vector
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover
other-modules: Arbor.File.Format.Asif.ByteString.BuilderSpec
Arbor.File.Format.Asif.Data.IpSpec
Arbor.File.Format.Asif.ExtractSpec
Arbor.File.Format.Asif.Format.SegmentValueSpec
Arbor.File.Format.Asif.Format.TextSpec
Arbor.File.Format.Asif.WriteSpec
Arbor.File.Format.AsifSpec
Arbor.TestUtils
Gen.Feed
TestApp
Paths_asif
autogen-modules: Paths_asif
hs-source-dirs: test
default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
ghc-options: -threaded -rtsopts -with-rtsopts=-N
test-suite doctest
import: base, config
, asif
, doctest
, doctest-discover
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: DoctestDriver.hs
HS-Source-Dirs: doctest
build-tool-depends: doctest-discover:doctest-discover