packages feed

servant-auth-token-0.2.0.0: servant-auth-token.cabal

name:                servant-auth-token
version:             0.2.0.0
synopsis:            Servant based API and server for token based authorisation
description:         Please see README.md
homepage:            https://github.com/ncrashed/servant-auth-token#readme
license:             BSD3
license-file:        LICENSE
author:              NCrashed
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.Server.Auth.Token.Common
    Servant.Server.Auth.Token.Config
    Servant.Server.Auth.Token.Error
    Servant.Server.Auth.Token.Model 
    Servant.Server.Auth.Token.Monad
    Servant.Server.Auth.Token.Pagination
    Servant.Server.Auth.Token.Patch
    Servant.Server.Auth.Token.Restore 
    Servant.Server.Auth.Token
  build-depends:       
      base >= 4.7 && < 5
    , aeson-injector >= 1.0.4 && < 1.1
    , bytestring >= 0.10 && < 0.11
    , containers >= 0.5 && < 0.6
    , mtl >= 2.2 && < 2.3
    , persistent >= 2.2 && < 2.3
    , persistent-postgresql >= 2.2 && < 2.3
    , persistent-template >= 2.1 && < 2.2
    , pwstore-fast >= 2.4 && < 2.5
    , servant-auth-token-api >= 0.2.0 && < 0.3
    , servant-server >= 0.7 && < 0.9
    , text >= 1.2 && < 1.3
    , time >= 1.5 && < 1.7
    , transformers >= 0.4 && < 0.6
    , uuid >= 1.3 && < 1.4

  default-language:    Haskell2010
  default-extensions:
    BangPatterns
    DataKinds
    DeriveGeneric
    FlexibleContexts
    FlexibleInstances
    GADTs
    GeneralizedNewtypeDeriving
    KindSignatures
    MultiParamTypeClasses
    OverloadedStrings
    RecordWildCards
    ScopedTypeVariables
    TupleSections
    TypeFamilies
    TypeOperators

source-repository head
  type:     git
  location: https://github.com/ncrashed/servant-auth-token