-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuffer-builder-aeson.cabal
83 lines (76 loc) · 2.33 KB
/
buffer-builder-aeson.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
-- Initial buffer-builder-aeson.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: buffer-builder-aeson
version: 0.2.0.5
synopsis: Serialize Aeson values with Data.BufferBuilder
-- description:
license: MIT
license-file: LICENSE
author: Andy Friesen
maintainer: [email protected]
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository this
type: git
location: https://github.com/andyfriesen/buffer-builder-aeson
tag: 0.2.0.4
library
exposed-modules: Data.BufferBuilder.Aeson
hs-source-dirs: src
ghc-options: -O2 -Wall
-- ghc-options: -ddump-ds -ddump-simpl -ddump-stg -ddump-opt-cmm -ddump-asm -ddump-to-file
-- other-modules:
-- other-extensions:
build-depends: base == 4.*
, aeson
, integer-gmp
, buffer-builder >=0.2.0.0
, unordered-containers
, vector
, scientific
, bytestring
hs-source-dirs:
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -O2 -Wall
build-depends: base ==4.*
, buffer-builder-aeson
, buffer-builder
, text
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-th
, QuickCheck
, unordered-containers
, vector
, scientific
, bytestring
, HUnit
, text
, hashable
, attoparsec
, aeson
benchmark json-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -O2 -Wall
-- ghc-options: -ddump-ds -ddump-simpl -ddump-stg -ddump-opt-cmm -ddump-asm -ddump-to-file
build-depends: base
, buffer-builder
, buffer-builder-aeson
, aeson
, bytestring
, text
, deepseq
, criterion
, vector