Bump lower bounds in servant
- `text` is already 1.2.3.0 as https://github.com/fpco/stackage/issues/3147 is resolved AFAICS - `http-types` bound is surprisingly low due: https://github.com/fpco/stackage/issues/2976
This commit is contained in:
parent
bf289ccd59
commit
0ae673583b
3 changed files with 63 additions and 47 deletions
|
@ -9,7 +9,7 @@
|
||||||
{-# LANGUAGE ScopedTypeVariables #-}
|
{-# LANGUAGE ScopedTypeVariables #-}
|
||||||
{-# LANGUAGE TypeFamilies #-}
|
{-# LANGUAGE TypeFamilies #-}
|
||||||
{-# LANGUAGE TypeOperators #-}
|
{-# LANGUAGE TypeOperators #-}
|
||||||
#if __GLASGOW__HASKELL < 709
|
#if __GLASGOW_HASKELL__ < 709
|
||||||
{-# OPTIONS_GHC -fcontext-stack=41 #-}
|
{-# OPTIONS_GHC -fcontext-stack=41 #-}
|
||||||
#endif
|
#endif
|
||||||
#include "overlapping-compat.h"
|
#include "overlapping-compat.h"
|
||||||
|
|
|
@ -63,29 +63,38 @@ library
|
||||||
Servant.API.WithNamedContext
|
Servant.API.WithNamedContext
|
||||||
Servant.Utils.Links
|
Servant.Utils.Links
|
||||||
Servant.Utils.Enter
|
Servant.Utils.Enter
|
||||||
|
|
||||||
|
-- Bundled with GHC: Lower bound to not force re-installs
|
||||||
|
-- text and mtl are bundled starting with GHC-8.4
|
||||||
|
--
|
||||||
|
-- note: mtl lower bound is so low because of GHC-7.8
|
||||||
build-depends:
|
build-depends:
|
||||||
base >= 4.7 && < 4.11
|
base >= 4.7 && < 4.11
|
||||||
, base-compat >= 0.9 && < 0.10
|
, bytestring >= 0.10.4.0 && < 0.11
|
||||||
, aeson >= 0.7 && < 1.3
|
, mtl >= 2.0.1 && < 2.3
|
||||||
, attoparsec >= 0.12 && < 0.14
|
, text >= 1.2.3.0 && < 1.3
|
||||||
, bytestring >= 0.10 && < 0.11
|
|
||||||
, case-insensitive >= 1.2 && < 1.3
|
|
||||||
, http-api-data >= 0.3 && < 0.4
|
|
||||||
, http-media >= 0.4 && < 0.8
|
|
||||||
, http-types >= 0.8 && < 0.12
|
|
||||||
, natural-transformation >= 0.4 && < 0.5
|
|
||||||
, mtl >= 2.0 && < 2.3
|
|
||||||
, mmorph >= 1 && < 1.2
|
|
||||||
, tagged >= 0.7.3 && < 0.9
|
|
||||||
, text >= 1 && < 1.3
|
|
||||||
, singleton-bool >= 0.1.2.0 && <0.2
|
|
||||||
, string-conversions >= 0.3 && < 0.5
|
|
||||||
, network-uri >= 2.6 && < 2.7
|
|
||||||
, vault >= 0.3 && < 0.4
|
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
build-depends:
|
build-depends:
|
||||||
semigroups >= 0.16 && < 0.19
|
semigroups >= 0.18.3 && < 0.19
|
||||||
|
|
||||||
|
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
|
||||||
|
-- Here can be exceptions if we really need features from the newer versions.
|
||||||
|
build-depends:
|
||||||
|
base-compat >= 0.9.3 && < 0.10
|
||||||
|
, aeson >= 1.2.3.0 && < 1.3
|
||||||
|
, attoparsec >= 0.13.2.0 && < 0.14
|
||||||
|
, case-insensitive >= 1.2.0.10 && < 1.3
|
||||||
|
, http-api-data >= 0.3.7.1 && < 0.4
|
||||||
|
, http-media >= 0.7.1.1 && < 0.8
|
||||||
|
, http-types >= 0.9.1 && < 0.12
|
||||||
|
, natural-transformation >= 0.4 && < 0.5
|
||||||
|
, mmorph >= 1.1.0 && < 1.2
|
||||||
|
, tagged >= 0.8.5 && < 0.9
|
||||||
|
, singleton-bool >= 0.1.2.0 && < 0.2
|
||||||
|
, string-conversions >= 0.4.0.1 && < 0.5
|
||||||
|
, network-uri >= 2.6.1.0 && < 2.7
|
||||||
|
, vault >= 0.3.0.7 && < 0.4
|
||||||
|
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
@ -125,42 +134,49 @@ test-suite spec
|
||||||
Servant.API.ResponseHeadersSpec
|
Servant.API.ResponseHeadersSpec
|
||||||
Servant.Utils.LinksSpec
|
Servant.Utils.LinksSpec
|
||||||
Servant.Utils.EnterSpec
|
Servant.Utils.EnterSpec
|
||||||
build-tool-depends:
|
|
||||||
hspec-discover:hspec-discover
|
-- Dependencies inherited from the library. No need to specify bounds.
|
||||||
build-depends:
|
build-depends:
|
||||||
base == 4.*
|
base
|
||||||
, base-compat
|
, base-compat
|
||||||
, aeson
|
, aeson
|
||||||
, aeson-compat >=0.3.3 && <0.4
|
|
||||||
, attoparsec
|
, attoparsec
|
||||||
, bytestring
|
, bytestring
|
||||||
, hspec == 2.*
|
|
||||||
, QuickCheck
|
|
||||||
, quickcheck-instances
|
|
||||||
, servant
|
, servant
|
||||||
, string-conversions
|
, string-conversions
|
||||||
, text
|
, text
|
||||||
, url
|
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
build-depends:
|
build-depends:
|
||||||
semigroups >= 0.16 && < 0.19
|
semigroups
|
||||||
|
|
||||||
|
-- Additonal dependencies
|
||||||
|
build-depends:
|
||||||
|
aeson-compat >= 0.3.3 && < 0.4
|
||||||
|
, hspec >= 2.4.4 && < 2.5
|
||||||
|
, QuickCheck >= 2.10.1 && < 2.12
|
||||||
|
, quickcheck-instances >= 0.3.16 && < 0.4
|
||||||
|
|
||||||
|
build-tool-depends:
|
||||||
|
hspec-discover:hspec-discover >= 2.4.4 && < 2.5
|
||||||
|
|
||||||
test-suite doctests
|
test-suite doctests
|
||||||
build-depends: base
|
build-depends:
|
||||||
, servant
|
base
|
||||||
, doctest
|
, servant
|
||||||
, filemanip
|
, doctest >= 0.13.0 && <0.14
|
||||||
, directory
|
|
||||||
, filepath
|
-- We test Links failure with doctest, so we need extra dependencies
|
||||||
, hspec
|
build-depends:
|
||||||
type: exitcode-stdio-1.0
|
hspec >= 2.4.4 && < 2.5
|
||||||
main-is: test/doctests.hs
|
|
||||||
buildable: True
|
type: exitcode-stdio-1.0
|
||||||
default-language: Haskell2010
|
main-is: test/doctests.hs
|
||||||
ghc-options: -Wall -threaded
|
buildable: True
|
||||||
if impl(ghc >= 8.2)
|
default-language: Haskell2010
|
||||||
x-doctest-options: -fdiagnostics-color=never
|
ghc-options: -Wall -threaded
|
||||||
include-dirs: include
|
if impl(ghc >= 8.2)
|
||||||
x-doctest-source-dirs: test
|
x-doctest-options: -fdiagnostics-color=never
|
||||||
x-doctest-modules: Servant.Utils.LinksSpec
|
include-dirs: include
|
||||||
|
x-doctest-source-dirs: test
|
||||||
|
x-doctest-modules: Servant.Utils.LinksSpec
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{-# LANGUAGE PolyKinds #-}
|
{-# LANGUAGE PolyKinds #-}
|
||||||
{-# LANGUAGE TypeOperators #-}
|
{-# LANGUAGE TypeOperators #-}
|
||||||
{-# LANGUAGE ScopedTypeVariables #-}
|
{-# LANGUAGE ScopedTypeVariables #-}
|
||||||
#if __GLASGOW__HASKELL < 709
|
#if __GLASGOW_HASKELL__ < 709
|
||||||
{-# OPTIONS_GHC -fcontext-stack=41 #-}
|
{-# OPTIONS_GHC -fcontext-stack=41 #-}
|
||||||
#endif
|
#endif
|
||||||
module Servant.Utils.LinksSpec where
|
module Servant.Utils.LinksSpec where
|
||||||
|
|
Loading…
Reference in a new issue