amazon-products-0.1.0.1: amazon-products.cabal
name: amazon-products
version: 0.1.0.1
synopsis: Connector for Amazon Products API
description: Allows users to directly access Amazon Products API,
without having to work with the underlying REST and
authentication layers.
license: MIT
license-file: LICENSE
author: Andrew Rademacher
maintainer: andrewrademacher@gmail.com
category: Web
build-type: Simple
cabal-version: >=1.10
homepage: https://github.com/AndrewRademacher/hs-amazon-products
bug-reports: https://github.com/AndrewRademacher/hs-amazon-products/issues
source-repository head
type: git
location: https://github.com/AndrewRademacher/hs-amazon-products.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Amazon
, Amazon.Item
, Amazon.Utils
, Amazon.Types
, Amazon.Types.Item
build-depends: base >=4.6 && <4.7
, old-locale >=1.0 && <1.1
, time >=1.4 && <1.5
, text >=1.1 && <1.2
, bytestring >=0.10 && <0.11
, mtl >=2.1 && <2.2
, transformers >=0.3 && <0.4
, transformers-base >=0.4 && <0.5
, resourcet >=1.1 && <1.2
, conduit >=1.1 && <1.2
, http-conduit >=2.1 && <2.2
, xml-types >=0.3 && <0.4
, xml-picklers >=0.3 && <0.4
, xml-conduit >=1.2 && <1.3
, http-types >=0.8 && <0.9
, base64-bytestring >=1.0 && <1.1
, containers >=0.5 && <0.6
, cryptohash >=0.11 && <0.12
, byteable >=0.1 && <0.2
executable repl
main-is: Main.hs
hs-source-dirs: repl
default-language: Haskell2010
build-depends: base >=4.6 && <4.7
, text >=1.0 && <1.2
, bytestring >=0.10 && <0.11
, transformers >=0.3 && <0.4
, http-conduit >=2.1 && <2.2
, amazon-products