packages feed

snap-auth-cli-0.1.0.1: snap-auth-cli.cabal

name:                snap-auth-cli
version:             0.1.0.1
synopsis:            Command-line tool to manage Snap AuthManager database

description:         This utility provides command-line interface to user
                     database of standard authentication system for
                     the Snap web framework. You can create, read and
                     update users, set passwords, roles and meta
                     information. Currently only JsonFile backend is
                     supported. Type @snap-auth-cli -?@ to get usage
                     information, or see
                     <https://github.com/dzhus/snap-auth-cli/blob/master/README.org>
                     for details.

homepage:            https://github.com/dzhus/snap-auth-cli
license:             BSD3
license-file:        LICENSE
author:              Dmitry Dzhus
maintainer:          dima@dzhus.org
category:            Web, Snap
build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC == 7.6.1

source-repository head
  type:     git
  location: git://github.com/dzhus/snap-auth-cli.git

executable snap-auth-cli
  hs-source-dirs: src
  main-is: Main.hs

  ghc-options: -Wall

  build-depends:
    aeson                  == 0.6.*,
    aeson-pretty           == 0.6.*,
    base                   >= 4 && < 5,
    bytestring             == 0.10.*,
    clientsession          == 0.8.*,
    cmdargs                == 0.10.*,
    snap                   == 0.9.*,
    text                   == 0.11.*,
    unordered-containers   >= 0.1.4 && < 0.3,
    utf8-string            == 0.3.*