2022-01-04 22:06:23 +01:00
|
|
|
cabal-version: 2.2
|
2021-10-26 16:08:30 +02:00
|
|
|
name: servant-auth-client
|
|
|
|
version: 0.4.1.0
|
|
|
|
synopsis: servant-client/servant-auth compatibility
|
|
|
|
description: This package provides instances that allow generating clients from
|
|
|
|
<https://hackage.haskell.org/package/servant servant>
|
|
|
|
APIs that use
|
|
|
|
<https://hackage.haskell.org/package/servant-auth servant-auth's> @Auth@ combinator.
|
|
|
|
.
|
2022-03-01 09:34:45 +01:00
|
|
|
For a quick overview of the usage, see the <https://github.com/haskell-servant/servant/tree/master/servant-auth#readme README>.
|
2021-10-26 16:08:30 +02:00
|
|
|
category: Web, Servant, Authentication
|
2022-03-01 09:34:45 +01:00
|
|
|
homepage: https://github.com/haskell-servant/servant/tree/master/servant-auth#readme
|
2021-10-26 22:29:04 +02:00
|
|
|
bug-reports: https://github.com/haskell-servant/servant/issues
|
2021-10-26 16:08:30 +02:00
|
|
|
author: Julian K. Arni
|
|
|
|
maintainer: jkarni@gmail.com
|
|
|
|
copyright: (c) Julian K. Arni
|
2021-10-31 22:37:56 +01:00
|
|
|
license: BSD-3-Clause
|
2021-10-26 16:08:30 +02:00
|
|
|
license-file: LICENSE
|
|
|
|
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
2021-10-26 22:29:04 +02:00
|
|
|
location: https://github.com/haskell-servant/servant
|
2021-10-26 16:08:30 +02:00
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
|
|
|
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators
|
|
|
|
ghc-options: -Wall
|
|
|
|
build-depends:
|
2022-08-17 12:37:27 +02:00
|
|
|
base >= 4.10 && < 4.18
|
2022-03-14 02:58:24 +01:00
|
|
|
, bytestring >= 0.10.6.0 && < 0.12
|
2021-10-26 16:08:30 +02:00
|
|
|
, containers >= 0.5.6.2 && < 0.7
|
|
|
|
, servant-auth == 0.4.*
|
2022-01-31 15:13:47 +01:00
|
|
|
, servant >= 0.13 && < 0.20
|
|
|
|
, servant-client-core >= 0.13 && < 0.20
|
2021-10-26 16:08:30 +02:00
|
|
|
|
|
|
|
exposed-modules:
|
|
|
|
Servant.Auth.Client
|
|
|
|
Servant.Auth.Client.Internal
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite spec
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Spec.hs
|
|
|
|
hs-source-dirs:
|
|
|
|
test
|
|
|
|
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators
|
|
|
|
ghc-options: -Wall
|
2022-03-21 15:37:40 +01:00
|
|
|
build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10
|
2021-10-26 16:08:30 +02:00
|
|
|
|
|
|
|
-- dependencies with bounds inherited from the library stanza
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, servant-client
|
|
|
|
, servant-auth
|
|
|
|
, servant
|
|
|
|
, servant-auth-client
|
2021-10-26 18:56:55 +02:00
|
|
|
|
2021-10-26 16:08:30 +02:00
|
|
|
-- test dependencies
|
|
|
|
build-depends:
|
2022-03-21 15:37:40 +01:00
|
|
|
hspec >= 2.5.5 && < 2.10
|
2021-10-26 16:08:30 +02:00
|
|
|
, QuickCheck >= 2.11.3 && < 2.15
|
2021-11-18 14:10:45 +01:00
|
|
|
, aeson >= 1.3.1.1 && < 3
|
2022-03-14 02:58:24 +01:00
|
|
|
, bytestring >= 0.10.6.0 && < 0.12
|
2021-10-26 16:08:30 +02:00
|
|
|
, http-client >= 0.5.13.1 && < 0.8
|
|
|
|
, http-types >= 0.12.2 && < 0.13
|
|
|
|
, servant-auth-server >= 0.4.2.0 && < 0.5
|
2022-01-31 15:13:47 +01:00
|
|
|
, servant-server >= 0.13 && < 0.20
|
2021-10-26 16:08:30 +02:00
|
|
|
, time >= 1.5.0.1 && < 1.13
|
|
|
|
, transformers >= 0.4.2.0 && < 0.6
|
|
|
|
, wai >= 3.2.1.2 && < 3.3
|
|
|
|
, warp >= 3.2.25 && < 3.4
|
2021-11-18 14:10:45 +01:00
|
|
|
, jose >= 0.7.0.0 && < 0.10
|
2021-10-26 16:08:30 +02:00
|
|
|
other-modules:
|
|
|
|
Servant.Auth.ClientSpec
|
|
|
|
default-language: Haskell2010
|