packages feed

VKHS-1.6.1: VKHS.cabal

name:                VKHS
version:             1.6.1
synopsis:            Provides access to Vkontakte social network via public API
description:
    Provides access to Vkontakte API methods. Library requires no interaction
    with the user during Implicit-flow authentication.

license:             BSD3
license-file:        LICENSE
author:              Sergey Mironov
maintainer:          grrwlf@gmail.com
copyright:           Copyright (c) 2012, Sergey Mironov
category:            Web
build-type:          Simple
cabal-version:       >=1.6
homepage:            http://github.com/grwlf/vkhs

library
  hs-source-dirs:    src
  other-modules:

  exposed-modules:
                     Web.VKHS
                     Web.VKHS.Types
                     Web.VKHS.Monad
                     Web.VKHS.Client
                     Web.VKHS.Login
                     Web.VKHS.Error
                     Web.VKHS.API
                     Web.VKHS.API.Types

  build-depends:     base >=4.6 && <5,
                     containers,
                     mtl,
                     bytestring,
                     http-client,
                     http-client-tls,
                     network-uri,
                     pipes,
                     pipes-http,
                     time,
                     data-default-class,
                     parsec,
                     tagsoup,
                     case-insensitive,
                     http-types,
                     split,
                     utf8-string,
                     clock,
                     optparse-applicative,
                     aeson,
                     EitherT,
                     vector,
                     filepath,
                     directory


executable vkq
  hs-source-dirs:    app/vkq, app/aux, src
  main-is:           Main.hs
  build-depends:     regexpr,
                     text