name:                servant-namedargs
version:             0.1.0.1
synopsis:            Combinators for servant providing named parameters
-- description:
license:             BSD3
license-file:        LICENSE
author:              Cullin Poresky
maintainer:          cporeskydev@gmail.com
-- copyright:
category:            Web
build-type:          Simple
extra-source-files:  CHANGELOG.md, README.md
cabal-version:       >=1.10

library
  exposed-modules:     Servant.API.NamedArgs
  -- other-modules:
  -- other-extensions:
  build-depends:       base    >= 4.11 && < 4.13
                     , servant >= 0.14.1  && < 0.16
                     , named   >= 0.2     && < 0.3
                     , text    >= 1.2     && < 1.3
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: test/LinkEquivalency.hs
  build-depends:    base
                  , servant
                  , named
                  , servant-namedargs
                  , hspec >= 2.7 && < 2.8
                  , QuickCheck >= 2.12.6.1 && < 2.13
  default-language:    Haskell2010