servant 0.6 → 0.6.1
raw patch · 3 files changed
+7/−7 lines, 3 files
Files
servant.cabal view
@@ -1,5 +1,5 @@ name: servant-version: 0.6+version: 0.6.1 synopsis: A family of combinators for defining webservices APIs description: A family of combinators for defining webservices APIs and serving them
src/Servant/API/BasicAuth.hs view
@@ -1,12 +1,13 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-}-{-# LANGUAGE KindSignatures #-}-{-# LANGUAGE PolyKinds #-}+{-# LANGUAGE KindSignatures #-}+{-# LANGUAGE PolyKinds #-}+ module Servant.API.BasicAuth where import Data.ByteString (ByteString) import Data.Typeable (Typeable)-import GHC.TypeLits (Symbol)+import GHC.TypeLits (Symbol) -- | Combinator for <https://tools.ietf.org/html/rfc2617#section-2 Basic Access Authentication>.
src/Servant/API/Experimental/Auth.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-}-{-# LANGUAGE KindSignatures #-}-{-# LANGUAGE PolyKinds #-}+{-# LANGUAGE KindSignatures #-}+{-# LANGUAGE PolyKinds #-} module Servant.API.Experimental.Auth where import Data.Typeable (Typeable)@@ -11,4 +11,3 @@ -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE. data AuthProtect (tag :: k) deriving (Typeable)-