goggles-0.1.0.0: goggles.cabal
name: goggles
version: 0.1.0.0
synopsis: Interface to Google Cloud APIs
description: Interface to Google Cloud APIs
homepage: https://github.com/ocramz/goggles
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: zocca.marco gmail
copyright: 2017 Marco Zocca
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.2
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Network.Goggles
other-modules: Data.Keys
Network.Goggles.Cloud
Network.Utils.HTTP
Network.Goggles.Types
Network.Goggles.Auth.JWT
Network.Goggles.Auth.OAuth2
Network.Goggles.Auth.TokenExchange
Network.Goggles.Control.Exceptions
build-depends: base >= 4.7 && < 5
, binary
, scientific
, attoparsec
, aeson
, req >= 0.3
, http-client
, http-client-tls
, http-types
, cryptonite
, memory
, pem
, x509
, x509-store
, unix-time
, mtl
, transformers
, text
, bytestring
, base64-bytestring
, time
, stm
-- , envy
, containers
, exceptions
, filepath
-- * DEBUG
, hspec
, QuickCheck
-- executable goggles
-- default-language: Haskell2010
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- hs-source-dirs: app
-- main-is: Test.hs
-- build-depends: base
-- , goggles
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
, goggles
, hspec
, QuickCheck
source-repository head
type: git
location: https://github.com/ocramz/goggles