Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lib to support ghc 9 & associated base #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
6 changes: 4 additions & 2 deletions src/StdLib.hs
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,17 @@ import Data.Int as X
import Data.IntMap as X (IntMap)
import Data.IntSet as X (IntSet)
import Data.List as X (break, drop, filter, intercalate, isPrefixOf,
replicate, reverse, sortBy, splitAt, take)
replicate, reverse, sortBy, splitAt, take,
(++))
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 as X (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