packages feed

google-server-api-0.1.0.0: google-server-api.cabal

name:                google-server-api
version:             0.1.0.0
synopsis:            Google APIs for server to server applications
description:
  This library provides a way to use Google API for server to server applications.
homepage:            https://github.com/arowM/haskell-google-server-api#readme
license:             MIT
license-file:        LICENSE
author:              Kadzuya Okamoto
maintainer:          arow.okamoto+github@gmail.com
copyright:           2018 Kadzuya Okamoto
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Google.Client
                     , Google.Form
                     , Google.JWT
                     , Google.Response
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , aeson-casing
                     , base64-bytestring
                     , bytestring
                     , http-api-data
                     , http-client
                     , http-client-tls
                     , HsOpenSSL
                     , mime-mail
                     , monad-control
                     , monad-logger
                     , mtl
                     , read-env-var
                     , RSA
                     , servant
                     , servant-client
                     , text
                     , time
                     , transformers
                     , transformers-base
                     , unix-time
                     , unordered-containers
                     , wai
                     , wai-extra
                     , warp
  default-language:    Haskell2010
  ghc-options:         -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction
  default-extensions:  ConstraintKinds
                     , DataKinds
                     , DefaultSignatures
                     , DeriveDataTypeable
                     , DeriveFunctor
                     , DeriveGeneric
                     , DuplicateRecordFields
                     , EmptyDataDecls
                     , FlexibleContexts
                     , FlexibleInstances
                     , GADTs
                     , GeneralizedNewtypeDeriving
                     , InstanceSigs
                     , LambdaCase
                     , MultiParamTypeClasses
                     , NamedFieldPuns
                     , NoMonomorphismRestriction
                     , OverloadedLabels
                     , OverloadedStrings
                     , PackageImports
                     , PartialTypeSignatures
                     , PatternSynonyms
                     , PolyKinds
                     , RankNTypes
                     , RecordWildCards
                     , ScopedTypeVariables
                     , StandaloneDeriving
                     , TupleSections
                     , TypeApplications
                     , TypeFamilies
                     , TypeOperators
                     , ViewPatterns
  other-extensions:    OverloadedLists
                     , QuasiQuotes
                     , TemplateHaskell

source-repository head
  type:     git
  location: https://github.com/arowM/haskell-google-server-api