-
Notifications
You must be signed in to change notification settings - Fork 7
/
fast-builder.cabal
72 lines (65 loc) · 2.79 KB
/
fast-builder.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
name: fast-builder
version: 0.1.4.0
synopsis: Fast ByteString Builder
description: An efficient implementation of ByteString builder. It should be faster than
the standard implementation in most cases.
.
In many benchmarks, the performance improvement is 2x-10x.
homepage: http://github.com/takano-akio/fast-builder
license: PublicDomain
license-file: LICENSE
author: Takano Akio
maintainer: tak@anoak.io
-- copyright:
category: Data
build-type: Simple
extra-source-files: benchmarks/aeson/*.hs
benchmarks/aeson/*.json
cabal-version: >=1.10
tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1 || ==9.0.1 || ==9.2.8 || ==9.4.8 || ==9.6.6 || ==9.8.2 || ==9.10.1
library
exposed-modules: Data.ByteString.FastBuilder,
Data.ByteString.FastBuilder.Internal,
Data.ByteString.FastBuilder.Unsafe
other-modules: Data.ByteString.FastBuilder.Internal.Prim
-- other-extensions:
build-depends: base >= 4.8 && < 4.21, bytestring >= 0.10.6.0, ghc-prim
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall
benchmark aeson
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: benchmarks/aeson
other-modules: Fast, Bstr
include-dirs: benchmarks/aeson
build-depends: base, fast-builder, aeson, criterion, bytestring,
scientific, text, vector, deepseq, ghc-prim, template-haskell,
unordered-containers >= 0.2.11.0
ghc-options: -fsimpl-tick-factor=120
ghc-options: -Wall -threaded -g -rtsopts
default-language: Haskell2010
benchmark vector
type: exitcode-stdio-1.0
main-is: vector.hs
hs-source-dirs: benchmarks
build-depends: base, fast-builder, criterion, bytestring, vector, deepseq
ghc-options: -Wall -threaded -g -rtsopts -eventlog
default-language: Haskell2010
benchmark map
type: exitcode-stdio-1.0
main-is: map.hs
hs-source-dirs: benchmarks
build-depends: base, fast-builder, criterion, bytestring, containers, deepseq
ghc-options: -Wall -threaded -g -rtsopts -eventlog
default-language: Haskell2010
test-suite prop
type: exitcode-stdio-1.0
main-is: prop.hs
hs-source-dirs: tests
build-depends: base, fast-builder, bytestring, QuickCheck, stm, process
ghc-options: -Wall -g -rtsopts
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/takano-akio/fast-builder.git