-
Notifications
You must be signed in to change notification settings - Fork 4
/
flatbuffers.cabal
227 lines (221 loc) · 5.84 KB
/
flatbuffers.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
225
226
227
cabal-version: 1.18
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: flatbuffers
version: 0.4.0.0
synopsis: Haskell implementation of the FlatBuffers protocol.
description: Haskell implementation of the FlatBuffers protocol.
.
See the GitHub page for documentation: <https://github.com/dcastro/haskell-flatbuffers>
category: Data, Serialization, Network
homepage: https://github.com/dcastro/haskell-flatbuffers
bug-reports: https://github.com/dcastro/haskell-flatbuffers/issues
author: Diogo Castro
maintainer: [email protected]
copyright: 2019 Diogo Castro
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 9.2.5 , GHC == 9.4.8 , GHC == 9.6.4
extra-source-files:
README.md
CHANGELOG.md
extra-doc-files:
README.md
source-repository head
type: git
location: https://github.com/dcastro/haskell-flatbuffers
library
exposed-modules:
FlatBuffers
FlatBuffers.Internal.Build
FlatBuffers.Internal.Compiler.Display
FlatBuffers.Internal.Compiler.NamingConventions
FlatBuffers.Internal.Compiler.Parser
FlatBuffers.Internal.Compiler.ParserIO
FlatBuffers.Internal.Compiler.SemanticAnalysis
FlatBuffers.Internal.Compiler.SyntaxTree
FlatBuffers.Internal.Compiler.TH
FlatBuffers.Internal.Compiler.ValidSyntaxTree
FlatBuffers.Internal.Constants
FlatBuffers.Internal.FileIdentifier
FlatBuffers.Internal.Read
FlatBuffers.Internal.Types
FlatBuffers.Internal.Write
FlatBuffers.Vector
other-modules:
Paths_flatbuffers
hs-source-dirs:
src
default-extensions:
AllowAmbiguousTypes
BangPatterns
BlockArguments
DeriveTraversable
DeriveTraversable
DerivingStrategies
GeneralizedNewtypeDeriving
ImportQualifiedPost
InstanceSigs
LambdaCase
NegativeLiterals
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Wall -Wno-name-shadowing -Wincomplete-record-updates -Wredundant-constraints
build-depends:
base >=4.16 && <5
, binary >=0.8.9.0
, bytestring >=0.11.3.1
, containers >=0.6.4.1
, directory >=1.3.6.2
, filepath >=1.4.2.2
, megaparsec >=9.2.2
, mono-traversable >=1.0.15.3
, mtl >=2.2.2
, parser-combinators >=1.3.0
, scientific >=0.3.7.0
, template-haskell >=2.18.0.0
, text >=2.0
, text-manipulate >=0.3.1.0
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Examples
Examples.Generated
Examples.HandWritten
FlatBuffers.AlignmentSpec
FlatBuffers.Integration.RoundTripThroughFlatcSpec
FlatBuffers.Internal.Compiler.ParserSpec
FlatBuffers.Internal.Compiler.SemanticAnalysisSpec
FlatBuffers.Internal.Compiler.THSpec
FlatBuffers.ReadSpec
FlatBuffers.RoundTripSpec
TestImports
Paths_flatbuffers
hs-source-dirs:
test/
default-extensions:
AllowAmbiguousTypes
BangPatterns
BlockArguments
DeriveTraversable
DeriveTraversable
DerivingStrategies
GeneralizedNewtypeDeriving
ImportQualifiedPost
InstanceSigs
LambdaCase
NegativeLiterals
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Wall -Wno-name-shadowing -Wincomplete-record-updates -Wredundant-constraints
build-depends:
HUnit
, aeson
, aeson-pretty
, base >=4.16 && <5
, binary >=0.8.9.0
, bytestring >=0.11.3.1
, containers >=0.6.4.1
, directory >=1.3.6.2
, filepath >=1.4.2.2
, flatbuffers
, hedgehog
, hex-text
, hspec
, hspec-core
, hspec-expectations-pretty-diff
, hspec-hedgehog
, hspec-megaparsec
, http-client
, http-types
, megaparsec >=9.2.2
, mono-traversable >=1.0.15.3
, mtl >=2.2.2
, parser-combinators >=1.3.0
, pretty-simple
, process
, raw-strings-qq
, scientific >=0.3.7.0
, template-haskell >=2.18.0.0
, text >=2.0
, text-manipulate >=0.3.1.0
, utf8-string
default-language: Haskell2010
benchmark criterion-bench
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
DecodeVectors
Encode
EncodeVectors
Types
Paths_flatbuffers
hs-source-dirs:
bench/
default-extensions:
AllowAmbiguousTypes
BangPatterns
BlockArguments
DeriveTraversable
DeriveTraversable
DerivingStrategies
GeneralizedNewtypeDeriving
ImportQualifiedPost
InstanceSigs
LambdaCase
NegativeLiterals
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Wall -Wno-name-shadowing -Wincomplete-record-updates -Wredundant-constraints -threaded -rtsopts
build-depends:
aeson
, base >=4.16 && <5
, binary >=0.8.9.0
, bytestring >=0.11.3.1
, containers >=0.6.4.1
, criterion
, directory >=1.3.6.2
, filepath >=1.4.2.2
, flatbuffers
, megaparsec >=9.2.2
, mono-traversable >=1.0.15.3
, mtl >=2.2.2
, parser-combinators >=1.3.0
, scientific >=0.3.7.0
, template-haskell >=2.18.0.0
, text >=2.0
, text-manipulate >=0.3.1.0
, vector
default-language: Haskell2010