packages feed

buffer-builder-aeson-0.2.0.4: buffer-builder-aeson.cabal

-- 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.4
synopsis:            Serialize Aeson values with Data.BufferBuilder
-- description:
license:             MIT
license-file:        LICENSE
author:              Andy Friesen
maintainer:          andy.friesen@gmail.com
-- 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