-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: fb64bec4108c0fda7ee95dc3b7458a61299a76546d9cfd3389a7e79e364ff1dd

name:           wreq-stringless
version:        0.5.2.0
synopsis:       Simple wrapper to use wreq without Strings
description:    This library wraps all functions from @Network.Wreq@ which expects a 'String'
                and replaces the 'String' Type with the "Network.Wreq.StringLess.StringLike" Type-Class.
                .
                Instances for "Network.Wreq.StringLess.StringLike" are given for:
                .
                  * "Data.Text"
                  .
                  * "Data.Text.Lazy"
                  .
                  * "Data.ByteString.UTF8"
                  .
                  * "Data.ByteString.Lazy.UTF8"
                .
                So you can use any of this types instead of 'String'.
                .
                To use this library, replace your the @wreq@ dependency from your @cabal@
                file with @wreq-stringless@ and import "Network.Wreq.StringLess" instead
                of @Network.Wreq@.
                .
                The versions of this library correspond with the version of @wreq@.
                .
                see <https://github.com/j-keck/wreq-stringless/tree/master/examples> for examples.
category:       Web
homepage:       https://github.com/j-keck/wreq-stringless#readme
bug-reports:    https://github.com/j-keck/wreq-stringless/issues
author:         Juergen Keck
maintainer:     Juergen Keck <jhyphenkeck@gmail.com>
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    examples/DirectComparison.hs
    examples/package.yaml
    examples/stack.yaml
    examples/WithByteString.hs
    examples/WithText.hs
    examples/wreq-stringless-examples.cabal
    package.yaml
    README.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/j-keck/wreq-stringless

library
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base >=4.7 && <5
    , bytestring
    , text
    , utf8-string
    , wreq ==0.5.2.0
  exposed-modules:
      Network.Wreq.StringLess
      Network.Wreq.StringLess.Cache
      Network.Wreq.StringLess.Cache.Store
      Network.Wreq.StringLess.Lens
      Network.Wreq.StringLess.Session
      Network.Wreq.StringLess.StringLike
      Network.Wreq.StringLess.Types
  other-modules:
      Paths_wreq_stringless
  default-language: Haskell2010