packages feed

mapquest-api-0.3.1: mapquest-api.cabal

name:                mapquest-api
version:             0.3.1
synopsis:            Bindings to the MapQuest API
description:         This library provides a high-level interface to the MapQuest API. Currently only the "geocoding" API (street address to coordinates) is provided, but the functionality is straightforward to extend.
homepage:            https://github.com/ocramz/mapquest-api
license:             BSD3
license-file:        LICENSE
author:              Marco Zocca
maintainer:          zocca.marco gmail
copyright:           2018 Marco Zocca
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC == 8.0.1

library
  default-language:    Haskell2010
  ghc-options:         -Wall
  hs-source-dirs:      src
  exposed-modules:     Web.API.MapQuest
  other-modules:       Web.API.MapQuest.Geocoding
  build-depends:       base >= 4.7 && < 5
                     , goggles >= 0.3
                     , mtl
                     , req >= 1.0
                     , bytestring
                     , text
                     , aeson
                     , exceptions

-- executable mapquest-api
--   default-language:    Haskell2010
--   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
--   hs-source-dirs:      app
--   main-is:             Main.hs
--   build-depends:       base
--                      , mapquest-api

-- test-suite spec
--   default-language:    Haskell2010
--   ghc-options:         -Wall
--   type:                exitcode-stdio-1.0
--   hs-source-dirs:      test
--   main-is:             Spec.hs
--   build-depends:       base
--                      , mapquest-api
--                      , hspec
--                      , QuickCheck

source-repository head
  type:     git
  location: https://github.com/ocramz/mapquest-api