packages feed

conduit-aeson-0.1.0.0: conduit-aeson.cabal

name:                conduit-aeson
version:             0.1.0.0
synopsis:            Short description
description:         Please see the README on GitHub at <https://github.com/lehins/conduit-aeson#readme>
homepage:            https://github.com/lehins/conduit-aeson
license:             BSD3
license-file:        LICENSE
author:              Alexey Kuleshevich
maintainer:          alexey@kuleshevi.ch
copyright:           2021-2022 Alexey Kuleshevich
category:            Algorithms
build-type:          Simple
extra-source-files:  README.md
                   , CHANGELOG.md
cabal-version:       1.18
tested-with:         GHC == 8.4.3
                   , GHC == 8.4.4
                   , GHC == 8.6.3
                   , GHC == 8.6.4
                   , GHC == 8.6.5
                   , GHC == 8.8.1
                   , GHC == 8.8.2
                   , GHC == 8.10.1

library
  hs-source-dirs:      src
  exposed-modules:     Data.Conduit.Aeson

  other-modules:
  build-depends:       aeson >= 1.0
                     , attoparsec
                     , base >= 4.9 && < 5
                     , bytestring
                     , conduit
                     , conduit-extra
                     , text

  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wredundant-constraints


test-suite doctests
  type:             exitcode-stdio-1.0
  hs-source-dirs:   tests
  main-is:          doctests.hs
  build-depends: base
  if impl(ghc >= 8.2)
    build-depends: attoparsec
                 , bytestring
                 , conduit
                 , conduit-aeson
                 , doctest-parallel
  default-language:    Haskell2010
  ghc-options:        -Wall
                      -Wincomplete-record-updates
                      -Wincomplete-uni-patterns
                      -Wredundant-constraints
                      -threaded

test-suite tests
  type:               exitcode-stdio-1.0
  hs-source-dirs:     tests
  main-is:            Main.hs
  other-modules:      Data.Conduit.AesonSpec
                    , Spec
  build-depends:      base
                    , aeson
                    , conduit
                    , containers
                    , conduit-aeson
                    , hspec
                    , QuickCheck
                    , scientific
                    , text
  build-tool-depends: hspec-discover:hspec-discover

  default-language:   Haskell2010
  ghc-options:        -Wall
                      -Wincomplete-record-updates
                      -Wincomplete-uni-patterns
                      -Wredundant-constraints
                      -fno-warn-orphans
                      -threaded
                      -with-rtsopts=-N2

source-repository head
  type:     git
  location: https://github.com/lehins/conduit-aeson