packages feed

snaplet-sqlite-simple-jwt-auth-0.2.0.0: snaplet-sqlite-simple-jwt-auth.cabal

name:                snaplet-sqlite-simple-jwt-auth
version:             0.2.0.0
synopsis:            Snaplet for JWT authentication with snaplet-sqlite-simple
description:
    JWT authentication snaplet for snaplet-sqlite-simple.
    .
    Very much a work-in-progress, use at your own risk.
    .
    Main documentation: <docs/Snap-Snaplet-SqliteSimple-JwtAuth Snap.Snaplet.SqliteSimple.JwtAuth>
    .
    For more info, browse to <http://github.com/nurpax/snaplet-sqlite-simple-jwt-auth> for examples & more information.
homepage:            https://github.com/nurpax/snaplet-sqlite-simple-jwt-auth#readme
license:             BSD3
license-file:        LICENSE
author:              Janne Hellsten
maintainer:          jjhellst@gmail.com
copyright:           2016 Janne Hellsten
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Snap.Snaplet.SqliteSimple.JwtAuth
  other-modules:       Snap.Snaplet.SqliteSimple.JwtAuth.JwtAuth
                       Snap.Snaplet.SqliteSimple.JwtAuth.Db
                       Snap.Snaplet.SqliteSimple.JwtAuth.Util
                       Snap.Snaplet.SqliteSimple.JwtAuth.Types
  ghc-options:         -Wall
  build-depends:
    aeson,
    attoparsec,
    base                  >= 4      && < 5,
    bcrypt                >= 0.0.10,
    bytestring            >= 0.9.1  && < 0.11,
    clientsession,
    containers,
    directory,
    jwt,
    lens,
    mtl                   >= 2 && < 3,
    snap                  >= 1.0,
    snap-core             >= 1.0,
    snaplet-sqlite-simple >= 1.0,
    sqlite-simple         >= 0.4.9.0,
    text                  >= 1.2,
    time                  >= 1.5,
    either                >= 3.1,
    errors                >= 2.1.2,
    unordered-containers
  default-language:    Haskell2010

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