packages feed

http-response-decoder-0.2.2: http-response-decoder.cabal

name:
  http-response-decoder
version:
  0.2.2
synopsis:
  Declarative DSL for parsing an HTTP response
homepage:
  https://github.com/sannsyn/http-response-decoder
bug-reports:
  https://github.com/sannsyn/http-response-decoder/issues
author:
  Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
  Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
  (c) 2016, Sannsyn AS
license:
  MIT
license-file:
  LICENSE
build-type:
  Simple
cabal-version:
  >=1.10


source-repository head
  type:
    git
  location:
    git://github.com/sannsyn/http-response-decoder.git


library
  hs-source-dirs:
    library
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010
  other-modules:
    HTTPResponseDecoder.Prelude
    HTTPResponseDecoder.BodyReaders
  exposed-modules:
    HTTPResponseDecoder
  build-depends:
    -- http:
    http-types >= 0.9 && < 0.10,
    http-client >= 0.4.27 && < 0.5,
    -- data:
    bytestring-tree-builder >= 0.2.5 && < 0.3,
    bytestring >= 0.10 && < 0.11,
    text >= 1 && < 2,
    unordered-containers >= 0.2.6 && < 0.3,
    case-insensitive >= 1.2 && < 2,
    -- general:
    matcher >= 0.1 && < 0.2,
    profunctors >= 5.2 && < 6,
    transformers >= 0.3 && < 0.6,
    base-prelude < 2,
    base < 5