packages feed

lifted-protolude-0.1.6: lifted-protolude.cabal

name:                lifted-protolude
version:             0.1.6
synopsis:            A sensible set of defaults for writing lifted custom Preludes.
description:         A sensible set of defaults for writing lifted custom Preludes.
homepage:            https://github.com/parsonsmat/lifted-protolude
license:             MIT
license-file:        LICENSE
author:              Stephen Diehl
maintainer:          parsonsmatt@gmail.com
copyright:           2016 Stephen Diehl, Matt Parsons
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/parsonsmatt/lifted-protolude/issues

description:
    A sensible set of defaults for writing custom Preludes, using 'lifted-base', 'exceptions', and 'lifted-async'.
Source-Repository head
    type: git
    location: git@github.com:parsonsmatt/protolude.git

library
  exposed-modules:     
    Protolude.Lifted
    Unsafe

  other-modules:
    Base
    Applicative
    Bool
    Debug
    List
    Monad
    Show
    Conv
    Either
    Functor
    Semiring
    Bifunctor
    Panic

  default-extensions:
    NoImplicitPrelude
    OverloadedStrings
    FlexibleContexts
    MultiParamTypeClasses

  ghc-options:
    -Wall
    -fwarn-implicit-prelude

  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,
    mtl              >= 2.1  && <2.3,
    transformers     >= 0.4  && <0.6,
    text             >= 1.2  && <1.3,
    stm              >= 2.4  && <2.5,
    bytestring       >= 0.10 && <0.11,
    exceptions,
    lifted-base,
    lifted-async

  hs-source-dirs:      src
  default-language:    Haskell2010