packages feed

servant-smsc-ru-0.1.0.0: servant-smsc-ru.cabal

name:                servant-smsc-ru
version:             0.1.0.0
synopsis:            Servant client for smsc.ru service for sending SMS to cell phones
description:         Please see README.md
homepage:            https://github.com/NCrashed/servant-smsc-ru#readme
license:             BSD3
license-file:        LICENSE
author:              Anton Gushcha
maintainer:          ncrashed@gmail.com
copyright:           2016 Anton Gushcha
category:            Web
build-type:          Simple
extra-source-files:
  README.md 
  CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:
    Servant.API.SMSC.RU
    Servant.API.SMSC.RU.API

  build-depends:       
      base >= 4.7 && < 5
    , aeson >= 0.11 && < 0.12
    , bytestring >= 0.10 && < 0.11
    , http-client >= 0.4 && < 0.6
    , http-client-tls >= 0.2 && < 0.4
    , mtl >= 2.2 && < 2.3
    , scientific >= 0.3 && < 0.4
    , servant >= 0.7 && < 0.9
    , servant-client >= 0.7 && < 0.9
    , text >= 1.2 && < 2
    , transformers >= 0.4 && < 0.6

  default-language:    Haskell2010
  default-extensions:
    DataKinds
    DeriveGeneric
    FlexibleInstances
    GeneralizedNewtypeDeriving
    KindSignatures
    OverloadedStrings
    RankNTypes
    RecordWildCards
    ScopedTypeVariables
    TypeFamilies
    TypeOperators
    TypeSynonymInstances

test-suite test-servant-smsc-ru
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends: 
      base
    , aeson
    , HUnit >= 1.3
    , QuickCheck >= 2.8.2
    , quickcheck-text
    , servant-smsc-ru
    , tasty >= 0.11
    , tasty-hunit >= 0.9
    , tasty-quickcheck >= 0.8
    , text
    , bytestring

source-repository head
  type:     git
  location: https://github.com/NCrashed/servant-smsc-ru