-
Notifications
You must be signed in to change notification settings - Fork 7
/
bytestring-builders-benchmark.cabal
79 lines (76 loc) · 2.76 KB
/
bytestring-builders-benchmark.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
cabal-version: 2.4
name:
bytestring-builders-benchmark
version:
1
category:
Benchmark
synopsis:
Comparison of different bytestring builders
homepage:
https://github.com/haskell-perf/strict-bytestring-builders
bug-reports:
https://github.com/haskell-perf/strict-bytestring-builders/issues
author:
Nikita Volkov <[email protected]>
maintainer:
Nikita Volkov <[email protected]>
copyright:
(c) 2015, Nikita Volkov
license:
MIT
license-file:
LICENSE
build-type:
Simple
source-repository head
type:
git
location:
git://github.com/haskell-perf/strict-bytestring-builders.git
library
hs-source-dirs:
library
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
exposed-modules:
ByteString.BuildersBenchmark.Subjects
ByteString.BuildersBenchmark.Actions
ByteString.BuildersBenchmark.Benchmarks
ByteString.BuildersBenchmark.Inputs
build-depends:
-- benchmarking:
gauge ^>=0.2,
-- builders:
blaze-builder >= 0.4.0.1 && < 0.5,
buffer-builder >= 0.2.4 && < 0.3,
bytestring-tree-builder >= 0.2.6 && < 0.3,
bytestring-strict-builder >= 0.4.3 && < 0.5,
binary >= 0.8 && < 0.10,
cereal == 0.5.*,
fast-builder ^>=0.1,
mason ^>=0.2,
ptr-poker ^>=0.1.2.8,
-- general:
rerebase == 1.*
benchmark benchmark
type:
exitcode-stdio-1.0
hs-source-dirs:
benchmark
main-is:
Main.hs
ghc-options:
-O2
-threaded
-funbox-strict-fields
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveTraversable, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
build-depends:
bytestring-builders-benchmark,
gauge,
rerebase == 1.*