name: servant-auth-token
version: 0.5.2.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: Anton Gushcha <ncrashed@gmail.com>
, Ivan Lazar Miljenovic <Ivan.Miljenovic@gmail.com>
maintainer: ncrashed@gmail.com
copyright: 2016-2017 Anton Gushcha
category: Web
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
stack.yaml
example/acid/src/API.hs
example/acid/src/Config.hs
example/acid/src/DB.hs
example/acid/src/Main.hs
example/acid/src/Monad.hs
example/acid/src/Server.hs
example/acid/LICENSE
example/acid/Setup.hs
example/acid/config.yaml
example/acid/servant-auth-token-example-acid.cabal
example/persistent/src/API.hs
example/persistent/src/Config.hs
example/persistent/src/Main.hs
example/persistent/src/Monad.hs
example/persistent/src/Server.hs
example/persistent/LICENSE
example/persistent/Setup.hs
example/persistent/config.yaml
example/persistent/servant-auth-token-example-persistent.cabal
example/leveldb/src/API.hs
example/leveldb/src/Config.hs
example/leveldb/src/Main.hs
example/leveldb/src/Monad.hs
example/leveldb/src/Server.hs
example/leveldb/LICENSE
example/leveldb/Setup.hs
example/leveldb/config.yaml
example/leveldb/servant-auth-token-example-leveldb.cabal
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Servant.Server.Auth.Token
Servant.Server.Auth.Token.Common
Servant.Server.Auth.Token.Combinator
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.SingleUse
build-depends:
base >= 4.8 && < 5
, aeson-injector >= 1.1 && < 1.2
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
, http-api-data >= 0.3.5 && < 0.4
, mtl >= 2.2 && < 2.3
, pwstore-fast >= 2.4 && < 2.5
, servant >= 0.11 && < 0.13
, servant-auth-token-api >= 0.5 && < 0.6
, servant-server >= 0.11 && < 0.13
, text >= 1.2 && < 1.3
, time >= 1.5 && < 1.9
, transformers >= 0.4 && < 0.6
, uuid >= 1.3 && < 1.4
, wai >= 3.2 && < 3.3
default-language: Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
DeriveGeneric
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
KindSignatures
MultiParamTypeClasses
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TupleSections
TypeFamilies
TypeOperators
source-repository head
type: git
location: https://github.com/ncrashed/servant-auth-token