name:                cisco-spark-api
version:             0.1.0.4
synopsis:            DEPRECATED in favor of webex-teams-api
description:         Please see the README on Github at <https://github.com/nshimaza/webex-teams-api#readme>
homepage:            https://github.com/nshimaza/webex-teams-api#readme
license:             MIT
license-file:        LICENSE
author:              Naoto Shimazaki
maintainer:          Naoto.Shimazaki@gmail.com
copyright:           Copyright: (c) 2017 Naoto Shimazaki
category:            Web
build-type:          Simple
extra-source-files:  CHANGELOG.md
                   , README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Network.CiscoSpark
                     , Network.CiscoSpark.Internal
                     , Network.CiscoSpark.Types
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , attoparsec
                     , bytestring
                     , conduit
                     , data-default
                     , http-conduit
                     , network-uri
                     , text
                     , bitset-word8
  default-language:    Haskell2010

executable cisco-spark-api-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , aeson
                     , bytestring
                     , conduit
                     , data-default
                     , http-conduit
                     , optparse-applicative
                     , text
                     , utf8-string
                     , cisco-spark-api
  default-language:    Haskell2010

test-suite cisco-spark-api-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Network.CiscoSparkSpec
                     , Network.CiscoSpark.InternalSpec
                     , Network.CiscoSpark.TypesSpec
  build-depends:       base
                     , aeson
                     , attoparsec
                     , async
                     , bytestring
                     , conduit
                     , data-default
                     , http-conduit
                     , http-types
                     , network-uri
                     , text
                     , wai
                     , warp
                     , hspec
                     , cisco-spark-api
  ghc-options:         -rtsopts
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/nshimaza/webex-teams-api