Add version bounds

This commit is contained in:
Francesco Gazzetta
2022-07-02 10:42:40 +02:00
parent ebd4b2e2b1
commit c387a33bdb

View File

@@ -21,6 +21,8 @@ build-type: Simple
extra-doc-files: CHANGELOG.md extra-doc-files: CHANGELOG.md
extra-source-files: golden/*.qbe extra-source-files: golden/*.qbe
tested-with: tested-with:
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.2 , GHC == 9.2.2
source-repository head source-repository head
@@ -45,13 +47,16 @@ library
GeneralizedNewtypeDeriving GeneralizedNewtypeDeriving
FlexibleInstances FlexibleInstances
OverloadedStrings OverloadedStrings
build-depends: base ^>=4.16.1.0 build-depends: base ^>= 4.16.1.0
, text || ^>= 4.14
, text-short || ^>= 4.15
, bytestring , text ^>= 1.2.5
, hashable || ^>= 2.0
, deepseq , text-short ^>= 0.1
, prettyprinter , bytestring ^>= 0.11.3
, hashable ^>= 1.4.0
, deepseq ^>= 1.4.4
, prettyprinter ^>= 1.7.1
hs-source-dirs: src hs-source-dirs: src
test-suite golden test-suite golden
@@ -61,10 +66,10 @@ test-suite golden
main-is: Main.hs main-is: Main.hs
build-depends: base build-depends: base
, qbe , qbe
, filepath
, tasty
, tasty-silver
, prettyprinter , prettyprinter
, filepath ^>= 1.4.2.2
, tasty ^>= 1.4.2.3
, tasty-silver ^>= 3.3.1.1
other-extensions: TypeApplications other-extensions: TypeApplications
OverloadedStrings OverloadedStrings
DataKinds DataKinds