packages feed

ziptastic-client-0.1.0.0: ziptastic-client.cabal

name:                ziptastic-client
version:             0.1.0.0
synopsis:
  Core Servant specification for the Ziptastic API (https://www.getziptastic.com) for doing forward and reverse geocoding.
description:
  This package provides a type-safe Servant specification for the Ziptastic
  (https://www.getziptastic.com) API for doing forward and reverse geocoding
  via zip/postal code, latitude, and longitude.
  .
  This package is maintained by Grafted-In (https://www.graftedin.io/).
homepage:            https://github.com/Ziptastic/ziptastic-haskell#readme
license:             BSD3
license-file:        LICENSE
author:              Elliot Cameron
maintainer:          elliot@graftedin.io
copyright:           2017 Elliot Cameron and Ziptastic and Grafted-In LLC
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC==8.0.2

library
  hs-source-dirs:  src
  exposed-modules: Ziptastic.Client
  build-depends:
      base >= 4.7 && < 5
    , bytestring
    , aeson
    , http-api-data
    , http-client
    , http-client-tls
    , iso3166-country-codes
    , servant
    , servant-client
    , text
    , tz
    , ziptastic-core
  default-language: Haskell2010
  other-extensions:
    DataKinds
    TypeOperators
    OverloadedStrings
  ghc-options: -Wall

source-repository head
  type:     git
  location: https://github.com/Ziptastic/ziptastic-haskell