summaryrefslogtreecommitdiff
path: root/minici.cabal
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-07-30 13:14:17 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2024-07-30 13:37:47 +0200
commit8be6c3ea9fd8831033b674cca770ab1f9e1858bc (patch)
treebf388719637f5eca2455304aacb4e91fa1a86830 /minici.cabal
parentccce704296792fb3efc7590e70b05cff52532258 (diff)
Bump dependencies, build with GHC up to 9.10
Changelog: Support for GHC up to 9.10
Diffstat (limited to 'minici.cabal')
-rw-r--r--minici.cabal31
1 files changed, 17 insertions, 14 deletions
diff --git a/minici.cabal b/minici.cabal
index 72e6c7e..8635bc4 100644
--- a/minici.cabal
+++ b/minici.cabal
@@ -67,23 +67,26 @@ executable minici
TupleSections
TypeApplications
TypeFamilies
+ TypeOperators
other-extensions:
TemplateHaskell
- build-depends: base >=4.15 && <5
- , bytestring >=0.10 && <0.12
- , containers >=0.6 && <0.7
- , directory >=1.3 && <1.4
- , exceptions >=0.10 && <0.11
- , filepath >=1.4 && <1.5
- , HsYAML >=0.2 && <0.3
- , mtl >=2.2 && <2.3
- , parser-combinators >=1.3 && <1.4
- , process >=1.6 && <1.7
- , stm >=2.5 && <2.6
- , template-haskell >=2.17 && <2.19
- , text >=1.2 && <2.1
- , th-compat >=0.1 && <0.2
+ build-depends:
+ base ^>= { 4.15, 4.16, 4.17, 4.18, 4.19, 4.20 },
+ bytestring ^>= { 0.10, 0.11, 0.12 },
+ containers ^>= { 0.6, 0.7 },
+ directory ^>= { 1.3 },
+ exceptions ^>= { 0.10 },
+ filepath ^>= { 1.4, 1.5 },
+ HsYAML ^>= { 0.2 },
+ mtl ^>= { 2.2 },
+ parser-combinators ^>= { 1.3 },
+ process ^>= { 1.6 },
+ stm ^>= { 2.5 },
+ template-haskell ^>= { 2.17, 2.18, 2.19, 2.20, 2.21, 2.22 },
+ text ^>= { 1.2, 2.0, 2.1 },
+ th-compat ^>= { 0.1 },
+
hs-source-dirs: src
default-language: Haskell2010