Name:                lifted-base-tf
Version:             0.1.0.0
x-revision: 2
Synopsis:            lifted IO operations from the base library
License:             BSD3
License-file:        LICENSE
Author:              Bas van Dijk, Anders Kaseorg
Maintainer:          M Farkas-Dyck <strake888@gmail.com>
Copyright:           (c) 2011-2012 Bas van Dijk, Anders Kaseorg
Homepage:            https://github.com/basvandijk/lifted-base
Bug-reports:         https://github.com/basvandijk/lifted-base/issues
Category:            Control
Build-type:          Simple
Cabal-version:       >= 1.10
Description:         Fork of <https://hackage.haskell.org/package/lifted-base lifted-base> with type families rather than fundeps
                     .
                     @lifted-base@ exports IO operations from the base library lifted to
                     any instance of 'MonadBase' or 'MonadBaseControl'.
                     .
                     Note that not all modules from @base@ are converted yet. If
                     you need a lifted version of a function from @base@, just
                     ask me to add it or send me a patch.
                     .
                     The package includes a copy of the @monad-peel@ testsuite written
                     by Anders Kaseorg The tests can be performed using @cabal test@.

extra-source-files:  README.markdown, NEWS, include/inlinable.h

--------------------------------------------------------------------------------

source-repository head
  type:     git
  location: https://github.com/strake/lifted-base-tf.git

--------------------------------------------------------------------------------

Library
  Exposed-modules: Control.Exception.Lifted
--                   Control.Concurrent.MVar.Lifted
--                   Control.Concurrent.Chan.Lifted
--                   Control.Concurrent.QSem.Lifted
--                   Control.Concurrent.QSemN.Lifted
--                   Control.Concurrent.Lifted
                   Data.IORef.Lifted
--                   Foreign.Marshal.Utils.Lifted
--                   System.Timeout.Lifted
  if impl(ghc < 7.8)
    Exposed-modules:
                   Control.Concurrent.SampleVar.Lifted

  Build-depends: base              >= 4.3 && < 5
               , basic             >= 0.1 && < 0.2
               , control           >= 0.1.1 && < 0.2

  Ghc-options: -Wall
  Include-dirs: include

  Default-language: Haskell2010
  Default-extensions: NoImplicitPrelude
                    , TypeFamilies

--------------------------------------------------------------------------------

test-suite test-lifted-base
  type:           exitcode-stdio-1.0
  main-is:        test.hs
  hs-source-dirs: test

  build-depends: lifted-base
               , base                 >= 4.3 && < 5
               , basic             >= 0.1 && < 0.2
               , control           >= 0.1 && < 0.2
               , transformers         >= 0.3
               , transformers-compat  >= 0.3
               , HUnit                >= 1.2.2
               , test-framework       >= 0.2.4
               , test-framework-hunit >= 0.2.4

  ghc-options: -Wall

  Default-language: Haskell2010

--------------------------------------------------------------------------------

benchmark bench-lifted-base
  type:           exitcode-stdio-1.0
  main-is:        bench.hs
  hs-source-dirs: bench

  ghc-options:    -O2

  build-depends: lifted-base
               , base          >= 4.3 && < 5
               , transformers  >= 0.2
               , criterion     >= 1
               , monad-control >= 0.3
               , monad-peel    >= 0.1

  Default-language: Haskell2010