Files
postgrest/protolude.cabal
T
4680e62d7b ghc 9.4 PR (w/ Cabal improvement) (#142)
* Release 0.3.3, with support for GHC 9.4

- allow base-4.18 (GHC 9.4)
- allow ghc-prim 0.10
- allow bytestring 0.11.4
- test against GHC 9.4.4

Further CI tweaks:

- cabal: update GHC versions to the latest releases of the respective major version
- cabal: remove non-latest minor versions
- stack: add lts-20 (GHC 9.2.5)
- stack: bring the list of GHC versions up to date

* Update Cabal CI

---------

Co-authored-by: Robert Vollmert <rob@vllmrt.net>
2023-02-15 21:41:08 -05:00

88 lines
2.2 KiB
Plaintext

name: protolude
version: 0.3.3
synopsis: A small prelude.
description: A sensible set of defaults for writing custom Preludes.
homepage: https://github.com/sdiehl/protolude
license: MIT
license-file: LICENSE
author: Stephen Diehl
maintainer: adamwespiser@gmail.com, stephen.m.diehl@gmail.com
copyright: 2016-2022 Stephen Diehl
category: Prelude
build-type: Simple
cabal-version: >=1.10
bug-reports: https://github.com/sdiehl/protolude/issues
tested-with:
GHC ==7.6.3
|| ==7.8.4
|| ==7.10.3
|| ==8.0.1
|| ==8.2.1
|| ==8.4.1
|| ==8.6.1
|| ==8.8.1
|| ==8.10.1
|| ==9.0.1
|| ==9.2.2
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: git@github.com:protolude/protolude.git
library
exposed-modules:
Protolude
Protolude.Applicative
Protolude.Base
Protolude.Bifunctor
Protolude.Bool
Protolude.CallStack
Protolude.Conv
Protolude.ConvertText
Protolude.Debug
Protolude.Either
Protolude.Error
Protolude.Exceptions
Protolude.Functor
Protolude.List
Protolude.Monad
Protolude.Panic
Protolude.Partial
Protolude.Safe
Protolude.Semiring
Protolude.Show
Protolude.Unsafe
default-extensions:
NoImplicitPrelude
FlexibleContexts
MultiParamTypeClasses
OverloadedStrings
ghc-options: -Wall -fwarn-implicit-prelude
build-depends:
array >=0.4 && <0.6
, async >=2.0 && <2.3
, base >=4.6 && <4.18
, bytestring >=0.10 && <0.12
, containers >=0.5 && <0.7
, deepseq >=1.3 && <1.5
, ghc-prim >=0.3 && <0.10
, hashable >=1.2 && <1.5
, mtl >=2.1 && <2.3
, mtl-compat >=0.2 && <0.3
, stm >=2.4 && <2.6
, text >=1.2 && <2.1
, transformers >=0.2 && <0.6
, transformers-compat >=0.4 && <0.8
if !impl(ghc >=8.0)
build-depends: fail ==4.9.*
hs-source-dirs: src
default-language: Haskell2010