commit a6f62265f345c8b7a7226515171752586b0d66e5 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 13:41:05 2016 -0400 bump version commit 1a809623cd1484ce215612e6b3ecef15015bc602 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 13:26:11 2016 -0400 masking for ghc 8.0 specific type commit 54bafb0bb80c8450863eac53a1f3a20a21c8b0c9 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:55:08 2016 -0400 bump ghc-prim for GHC 8.0 compat commit 8808d5f37369107b3e5961255089a8a9e02bf3d5 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:53:39 2016 -0400 expose base State transformers commit 05c32a4542aa66f715aea3855e140f74e97d4852 Author: Stephen Diehl <stephen.m.diehl@gmail.com> Date: Wed Apr 13 12:46:00 2016 -0400 adds compiler-independent base module
75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
name: protolude
|
|
version: 0.1.2
|
|
synopsis: A sensible set of defaults for writing custom Preludes.
|
|
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: stephen.m.diehl@gmail.com
|
|
copyright: 2016 Stephen Diehl
|
|
category: Prelude
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
tested-with:
|
|
GHC == 7.6.1,
|
|
GHC == 7.6.2,
|
|
GHC == 7.6.3,
|
|
GHC == 7.8.1,
|
|
GHC == 7.8.2,
|
|
GHC == 7.8.3,
|
|
GHC == 7.8.4,
|
|
GHC == 7.10.1,
|
|
GHC == 7.10.2,
|
|
GHC == 7.10.3
|
|
Bug-Reports: https://github.com/sdiehl/protolude/issues
|
|
|
|
description:
|
|
A sensible set of defaults for writing custom Preludes.
|
|
Source-Repository head
|
|
type: git
|
|
location: git@github.com:sdiehl/protolude.git
|
|
|
|
library
|
|
exposed-modules:
|
|
Protolude
|
|
Unsafe
|
|
|
|
other-modules:
|
|
Base
|
|
Applicative
|
|
Bool
|
|
Debug
|
|
List
|
|
Monad
|
|
Show
|
|
Either
|
|
Functor
|
|
Bifunctor
|
|
|
|
default-extensions:
|
|
NoImplicitPrelude
|
|
OverloadedStrings
|
|
MultiParamTypeClasses
|
|
|
|
ghc-options:
|
|
-Wall
|
|
|
|
build-depends:
|
|
base >= 4.6 && <4.10,
|
|
ghc-prim >= 0.3 && <0.6,
|
|
safe >= 0.3 && <0.4,
|
|
async >= 2.1 && <2.2,
|
|
deepseq >= 1.3 && <= 1.5,
|
|
containers >= 0.5 && <0.6,
|
|
semiring-simple >= 0.1 && <1.1,
|
|
mtl >= 2.1 && <2.3,
|
|
transformers >= 0.4 && < 0.6,
|
|
text >= 1.2 && <1.3,
|
|
stm >= 2.4 && <2.5,
|
|
string-conv >= 0.1 && <0.2,
|
|
bytestring >= 0.10 && <0.11
|
|
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|