packages feed

snaplet-sqlite-simple-0.1.1: snaplet-sqlite-simple.cabal

name:           snaplet-sqlite-simple
version:        0.1.1
synopsis:       sqlite-simple snaplet for the Snap Framework
description:    This snaplet contains support for using the SQLite
                database with a Snap Framework application via the
                sqlite-simple package.  It also includes an
                authentication backend.
license:        BSD3
license-file:   LICENSE
author:         Janne Hellsten, Doug Beardsley
maintainer:     Janne Hellsten <jjhellst@gmail.com>
build-type:     Simple
cabal-version:  >= 1.6
homepage:       https://github.com/nurpax/snaplet-sqlite-simple
category:       Web, Snap

extra-source-files:  LICENSE

data-files:
  resources/db/devel.cfg
  resources/auth/devel.cfg

source-repository head
  type:     git
  location: https://github.com/nurpax/snaplet-sqlite-simple.git

Library
  hs-source-dirs: src

  exposed-modules:
    Snap.Snaplet.SqliteSimple
    Snap.Snaplet.Auth.Backends.SqliteSimple

  other-modules:
    Paths_snaplet_sqlite_simple

  build-depends:
    base                       >= 4       && < 5,
    bytestring                 >= 0.9.1   && < 0.11,
    clientsession              >= 0.7.2   && < 0.9,
    configurator               >= 0.2     && < 0.3,
    MonadCatchIO-transformers  >= 0.3     && < 0.4,
    mtl                        >= 2       && < 3,
    sqlite-simple              >= 0.1     && < 1.0,
    direct-sqlite              >= 2.0     && < 2.1,
    resource-pool-catchio      >= 0.2     && < 0.3,
    snap                       >= 0.9     && < 0.10,
    text                       >= 0.11    && < 0.12,
    transformers               >= 0.2     && < 0.4,
    unordered-containers       >= 0.2     && < 0.3


  ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
               -fno-warn-orphans -fno-warn-unused-do-bind