servant-auth 0.2.1.0 → 0.2.6.0
raw patch · 2 files changed
+75/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- package.yaml +70/−0
- servant-auth.cabal +5/−2
+ package.yaml view
@@ -0,0 +1,70 @@+name: servant-auth+version: 0.2.6.0+synopsis: Authentication combinators for servant+description: |+ This package provides an @Auth@ combinator for 'servant'. This combinator+ allows using different authentication schemes in a straightforward way,+ and possibly in conjunction with one another.++ 'servant-auth' additionally provides concrete authentication schemes, such+ as Basic Access Authentication, JSON Web Tokens, and Cookies.++ For more details on how to use this, see the <http://github.com/plow-technologies/servant-auth#readme README>.+homepage: http://github.com/plow-technologies/servant-auth#readme+license: BSD3+license-file: LICENSE+author: Julian K. Arni+maintainer: jkarni@gmail.com+category: Web, Servant, Authentication+copyright: (c) Julian K. Arni+github: plow-technologies/servant-auth+tested-with: GHC == 7.10.2, GHC == 8.0.1++extra-source-files:+ - package.yaml++ghc-options: -Wall++dependencies:+ - base >= 4.7 && < 4.10++default-extensions:+ - AutoDeriveTypeable+ - ConstraintKinds+ - DataKinds+ - DefaultSignatures+ - DeriveFoldable+ - DeriveFunctor+ - DeriveGeneric+ - DeriveTraversable+ - FlexibleContexts+ - FlexibleInstances+ - FunctionalDependencies+ - GADTs+ - KindSignatures+ - MultiParamTypeClasses+ - OverloadedStrings+ - RankNTypes+ - ScopedTypeVariables+ - TypeFamilies+ - TypeOperators++library:+ source-dirs: src+ other-modules: []++tests:+ spec:+ main: Spec.hs+ source-dirs: test+ dependencies:+ - servant-auth+ - hspec > 2 && < 3+ - QuickCheck >= 2.8 && < 2.9+ doctest:+ main: Doctest.hs+ source-dirs: test+ dependencies:+ - doctest >= 0.9 && < 0.12+ - Glob >= 0.7 && < 0.8+ - yaml == 0.8.*
servant-auth.cabal view
@@ -1,9 +1,9 @@--- This file has been generated from package.yaml by hpack version 0.14.0.+-- This file has been generated from package.yaml by hpack version 0.15.0. -- -- see: https://github.com/sol/hpack name: servant-auth-version: 0.2.1.0+version: 0.2.6.0 synopsis: Authentication combinators for servant description: This package provides an @Auth@ combinator for 'servant'. This combinator allows using different authentication schemes in a straightforward way,@@ -24,6 +24,9 @@ tested-with: GHC == 7.10.2, GHC == 8.0.1 build-type: Simple cabal-version: >= 1.10++extra-source-files:+ package.yaml source-repository head type: git