Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions capDL-tool/CapDL/State.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import CapDL.Model

import Prelude ()
import Prelude.Compat
import Control.Monad
import Control.Monad.State
import Control.Monad.Writer
import Data.Maybe
Expand Down
13 changes: 7 additions & 6 deletions capDL-tool/capDL-tool.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ executable parse-capDL
-- Included libraries
array >=0.5 && <0.6,
base >= 4.16,
containers >=0.6 && <0.7,
filepath >=1.4 && <1.5,
mtl >=2.2 && <2.3,
containers >=0.7 && <0.8,
filepath >=1.5 && <1.6,
mtl >=2.3 && <2.4,
parsec >=3.1 && <3.2,
unix >=2.7 && <3,

-- Other libraries
base-compat == 0.12.*,
lens >= 4.15,
MissingH >=1.4 && <1.6,
base-compat == 0.14.*,
lens >= 5.2,
MissingH >=1.6 && <1.7,
pretty >=1.1 && <1.2,
regex-compat >= 0.90,
split >=0.2 && <0.3,
Expand All @@ -61,3 +61,4 @@ executable parse-capDL
-fno-warn-missing-signatures -fno-warn-type-defaults
-fno-warn-incomplete-uni-patterns
-fno-warn-incomplete-record-updates
-fno-warn-x-partial
4 changes: 2 additions & 2 deletions capDL-tool/stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

# Stackage LTS Haskell 20.25 (ghc-9.2.8)
resolver: lts-20.25
# Stackage LTS Haskell 24.32 (ghc-9.10.3)
resolver: lts-24.32

local-bin-path: .
Loading