forked from Quid2/flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flat.cabal.other
179 lines (152 loc) · 5.08 KB
/
flat.cabal.other
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
-- test-suite mspec
-- main-is: MicroSpec.hs
-- type: exitcode-stdio-1.0
-- default-language: Haskell2010
-- hs-source-dirs: test
-- ghc-options: -O0
-- other-modules: Test.E,Test.E.Flat
-- build-depends:
-- base
-- , bytestring
-- , deepseq
-- , microspec
-- , flat
-- -- if impl(eta)
-- -- cpp-options: -DETA_COMPILER
test-suite flat-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Test.Data,Test.Data2,Test.Data.Arbitrary,Test.Data.Flat,Test.Data2.Flat,Test.Data.Values
build-depends: base,tasty,tasty-hunit,tasty-quickcheck,ghc-prim,derive,text,bytestring,deepseq,containers,flat
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
-- executable flat-multi-bench
-- main-is: TestAlternatives.hs
-- hs-source-dirs: benchmarks,test,src
-- -- other-modules: Data.TypeHash
-- other-extensions: StandaloneDeriving, DeriveDataTypeable, DeriveGeneric, CPP
-- default-language: Haskell2010
-- build-depends: base ;
-- , regex-compat,text,filepath,containers,directory,process
-- , flat
executable flat-profile
main-is: Profile.hs
hs-source-dirs: benchmarks,test
--ghc-options: -dumpdir /tmp/dump -ddump-to-file -dsuppress-all -ddump-asm -ddump-opt-cmm -eventlog
ghc-options: -O2 -fprof-auto
ghc-options: -dumpdir /tmp/dump -ddump-to-file -dsuppress-all -ddump-simpl-stats
other-modules: Data,Test.Data,Test.Data.Flat,Test.Data2,Test.Data2.Flat,Test.Data.Values
build-depends: base,flat,bytestring,text,deepseq,weigh,containers
default-language: Haskell2010
benchmark flat-benchmark
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
QuickCheck >=2.8.2,
aeson >=0.11.3.0,
array >=0.5.1.0,
base >=4.8.2.0,
binary ==0.8.5.1,
cereal ==0.5.4.0,
store ==0.4.1,
binary-serialise-cbor >=0.1.1.0,
bits >=0.4,
blaze-html >=0.8.0.2,
bytestring >=0.10.6.0,
containers >=0.4,
criterion >=1.1.4.0,
statistics >=0.13,
deepseq >=1.4.1.1,
dlist >=0.7.1.2,
filepath >=1.3,
ghc-prim >=0.2,
mime-types >=0.1.0.6,
pretty ==1.1.*,
syb >=0.6,
tar >=0.5.0.3,
text >=1.2.2.1,
zlib >=0.5 && <0.7,
directory >=1.2.2.0,
vector >=0.11.0.0,
process >=1.2.3.0,
flat >=0.1.3,
weigh >=0.0.3
cpp-options: -DENC_8 -DOP_ENCDEC -DPKG_QUID2 -DLIST_BYTE
default-language: Haskell2010
default-extensions: CPP NoMonomorphismRestriction
other-extensions: StandaloneDeriving DeriveDataTypeable
DeriveGeneric CPP
hs-source-dirs: benchmarks test
other-modules:
PkgBinary
PkgStore
PkgCBOR
PkgCereal
PkgFlat
Test.Data
Test.Data.Values
Test.Data2
Test.Data.Arbitrary
Test.Data.Flat
Test.Data2.Flat
Data
ghc-options: -O2 -dumpdir /tmp/dump -ddump-to-file -dsuppress-all -ddump-simpl -ddump-simpl-stats -ddump-rule-rewrites
-- benchmark flat-benchmark
-- type: exitcode-stdio-1.0
-- main-is: Main.hs
-- build-depends:
-- QuickCheck >=2.8.2,
-- aeson >=0.11.3.0,
-- array >=0.5.1.0,
-- base >=4.8.2.0,
-- binary ==0.8.5.1,
-- cereal ==0.5.4.0,
-- store ==0.4.1,
-- binary-serialise-cbor >=0.1.1.0,
-- bits >=0.4,
-- blaze-html >=0.8.0.2,
-- bytestring >=0.10.6.0,
-- containers >=0.4,
-- criterion >=1.1.4.0,
-- statistics >=0.13,
-- deepseq >=1.4.1.1,
-- dlist >=0.7.1.2,
-- filepath >=1.3,
-- ghc-prim >=0.2,
-- mime-types >=0.1.0.6,
-- pretty ==1.1.*,
-- syb >=0.6,
-- tar >=0.5.0.3,
-- text >=1.2.2.1,
-- zlib >=0.5 && <0.7,
-- directory >=1.2.2.0,
-- vector >=0.11.0.0,
-- process >=1.2.3.0,
-- flat,
-- weigh >=0.0.3
-- cpp-options: -DENC_8 -DOP_ENCDEC -DPKG_QUID2 -DLIST_BYTE
-- default-language: Haskell2010
-- default-extensions: CPP NoMonomorphismRestriction
-- other-extensions: StandaloneDeriving DeriveDataTypeable
-- DeriveGeneric CPP
-- hs-source-dirs: benchmarks test
-- other-modules:
-- PkgBinary
-- PkgStore
-- PkgCBOR
-- PkgCereal
-- PkgFlat
-- Test.Data
-- Test.Data.Values
-- Test.Data2
-- Test.Data.Arbitrary
-- Test.Data.Flat
-- Test.Data2.Flat
-- Data
-- ghc-options: -O2 -dumpdir /tmp/dump -ddump-to-file -dsuppress-all -ddump-simpl -ddump-simpl-stats -ddump-rule-rewrites
-- executable qtest
-- default-language: Haskell2010
-- main-is: Test.hs
-- hs-source-dirs: test
-- build-depends: base, flat, time