Skip to content

Commit

Permalink
Update lib to support ghc 9 & associated base
Browse files Browse the repository at this point in the history
  • Loading branch information
creichert committed Oct 22, 2024
1 parent aca819d commit 86aebd9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/StdLib.hs
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,11 @@ import Data.List.NonEmpty as X (NonEmpty (..), nonEmpty)
import Data.Map as X (Map)
import Data.Maybe as X hiding (fromJust)
import Data.Monoid as X hiding ((<>))
import Data.Ord as X
import Data.Ord as X hiding (clamp)
import Data.Semigroup as X hiding (First, Last, getFirst, getLast)
import Data.Sequence as X (Seq)
import Data.Set as X (Set)
import Data.String (String)
import Data.Text as X (Text)
import Data.Time as X
import Data.Time.Clock.POSIX
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

resolver: lts-16.9
resolver: lts-22.38
packages:
- .
5 changes: 3 additions & 2 deletions stdlib.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.2.
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack

Expand Down Expand Up @@ -28,7 +28,8 @@ library
Paths_stdlib
hs-source-dirs:
src
default-extensions: NoImplicitPrelude
default-extensions:
NoImplicitPrelude
ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
build-depends:
async
Expand Down

0 comments on commit 86aebd9

Please sign in to comment.