packages feed

hw-json-lens-0.0.0.1: hw-json-lens.cabal

name:                   hw-json-lens
version:                0.0.0.1
synopsis:               Lens for hw-json
description:            Please see README.md
homepage:               http://github.com/haskell-works/hw-json-lens#readme
license:                MIT
license-file:           LICENSE
author:                 Alexey Raga
maintainer:             alexey.raga@gmail.com
copyright:              2016 Alexey Raga
category:               Data
build-type:             Simple
extra-source-files:     README.md
cabal-version:          >= 1.22

library
  hs-source-dirs:       src
  exposed-modules:      HaskellWorks.Data.Json.Lens, HaskellWorks.Data.ListMap
  build-depends:        base                          >= 4          && < 5
                      , array
                      , ansi-wl-pprint
                      , attoparsec
                      , bytestring
                      , conduit
                      , containers
                      , dlist
                      , hw-balancedparens             >= 0.1.0.0
                      , hw-bits                       >= 0.4.0.0
                      , hw-conduit                    >= 0.1.0.0
                      , hw-diagnostics                >= 0.0.0.5
                      , hw-json                       >= 0.4.0.0
                      , hw-parser
                      , hw-prim                       >= 0.4.0.0
                      , hw-rankselect                 >= 0.8.0.0
                      , lens >=3.8
                      , mmap
                      , mono-traversable
                      , resourcet
                      , scientific
                      , text
                      , unordered-containers
                      , vector
                      , word8

  default-language:     Haskell2010
  ghc-options:          -Wall -O2 -msse4.2

test-suite hw-json-lens-test
  type:                 exitcode-stdio-1.0
  hs-source-dirs:       test
  main-is:              Spec.hs
  other-modules:        HaskellWorks.Data.Json.NthSpec
                      , HaskellWorks.Data.Json.LensSpec
  build-depends:        base                          >= 4          && < 5
                      , attoparsec
                      , bytestring
                      , containers
                      , conduit
                      , hspec
                      , hw-balancedparens             >= 0.1.0.0
                      , hw-bits                       >= 0.4.0.0
                      , hw-conduit                    >= 0.1.0.0
                      , hw-json                       >= 0.4.0.0
                      , hw-json-lens
                      , hw-prim                       >= 0.4.0.0
                      , hw-rankselect                 >= 0.8.0.0
                      , lens >=3.8
                      , mmap
                      , parsec
                      , QuickCheck
                      , resourcet
                      , scientific
                      , transformers
                      , unordered-containers
                      , vector
  ghc-options:          -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:     Haskell2010

source-repository head
  type:     git
  location: https://github.com/haskell-works/hw-json-lens

benchmark bench
    Type: exitcode-stdio-1.0
    HS-Source-Dirs: bench
    Main-Is: Main.hs
    GHC-Options: -O2 -Wall -msse4.2
    Default-Language: Haskell2010
    Build-Depends:      base                          >= 4          && < 5
                      , bytestring
                      , conduit
                      , criterion
                      , hw-bits                       >= 0.4.0.0
                      , hw-conduit                    >= 0.1.0.0
                      , hw-json-lens
                      , hw-prim                       >= 0.4.0.0
                      , hw-rankselect                 >= 0.8.0.0
                      , lens >=3.8
                      , mmap
                      , resourcet
                      , scientific
                      , unordered-containers
                      , vector