packages feed

introduction-0.0.1.0: introduction.cabal

name:                introduction
version:             0.0.1.0
synopsis:            A prelude for safe new projects
description:         A prelude for safe new projects
homepage:            https://github.com/NorfairKing/introduction
license:             MIT
license-file:        LICENSE
author:              Tom Sydney Kerckhove
maintainer:          syd.kerckhove@gmail.com
copyright:           2016 Tom Sydney Kerckhove
category:            Prelude
build-type:          Simple
cabal-version:       >=1.10
tested-with:
  GHC == 8.0.1
Bug-Reports:         https://github.com/NorfairKing/introduction/issues

library
  hs-source-dirs:
    src

  exposed-modules:
    Introduction
    Unsafe

  other-modules:
    Base
    Bool
    Concurrency
    Debug
    Either
    Errors
    Functor
    IOString
    List
    Monad
    FilePaths

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

  build-depends:
      base                >= 4.9      && < 5   
    , ghc-prim            >= 0.3      && < 0.6 
    , async               >= 2.1      && < 2.2 
    , bytestring          >= 0.10     && < 0.11
    , containers          >= 0.5      && < 0.6 
    , deepseq             >= 1.3      && < 1.6 
    , exceptions          >= 0.8      && < 0.9
    , filepath            >= 1.4      && < 1.5
    , lifted-base         >= 0.2      && < 0.3
    , monad-control       >= 1.0      && < 1.1
    , mtl                 >= 2.1      && < 2.3 
    , path                >= 0.5      && < 0.6
    , path-io             >= 1.2      && < 1.3
    , safe                >= 0.3      && < 0.4 
    , stm                 >= 2.4      && < 2.5 
    , string-conv         >= 0.1      && < 0.2 
    , text                >= 1.2      && < 1.3 
    , transformers        >= 0.4      && < 0.6 
    , transformers-base   >= 0.4      && < 0.6 
    , validity            >= 0.3.0.4  && < 0.4
    , validity-containers >= 0.1.0.1  && < 0.2
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/NorfairKing/introduction