packages feed

universum-0.8.0: universum.cabal

name: universum
version: 0.8.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: 2016-2016 Stephen Diehl, 2016-2017 Serokell
maintainer: Serokell <hi@serokell.io>
stability: well...
homepage: https://github.com/serokell/universum
bug-reports: https://github.com/serokell/universum/issues
synopsis: Custom prelude used in Serokell
description:
    Custom prelude used in Serokell
category: Prelude
author: Stephen Diehl, @serokell
tested-with: GHC ==7.10.3 GHC ==8.0.1 GHC ==8.0.2 GHC ==8.2.1
extra-source-files:
    CHANGES.md

source-repository head
    type: git
    location: git@github.com:serokell/universum.git

library
    exposed-modules:
        Universum
        Applicative
        Base
        Bool
        Containers
        Debug
        Exceptions
        Functor
        List
        Nub
        Print
        String
        TypeOps
        Unsafe
        VarArg
        Lifted
        Lifted.Concurrent
        Lifted.Env
        Lifted.File
        Lifted.IORef
        Monad
        Monad.Either
        Monad.Maybe
        Monad.Trans
    build-depends:
        base <4.11,
        bytestring <0.11,
        containers <0.6,
        deepseq <1.5,
        exceptions <0.9,
        ghc-prim <0.6,
        hashable <1.3,
        microlens <0.5,
        microlens-mtl <0.2,
        mtl <2.3,
        safe <0.4,
        safe-exceptions <0.2,
        stm <2.5,
        text <1.3,
        text-format <0.4,
        transformers <0.6,
        type-operators <0.2,
        unordered-containers <0.3,
        utf8-string <1.1,
        vector <0.13
    default-language: Haskell2010
    default-extensions: NoImplicitPrelude OverloadedStrings
    hs-source-dirs: src
    ghc-options: -Wall -fwarn-implicit-prelude


benchmark  universum-benchmark
    type: exitcode-stdio-1.0
    main-is: Main.hs
    build-depends:
        base <4.11,
        universum -any,
        containers <0.6,
        criterion <1.3,
        deepseq <1.5,
        hashable <1.3,
        mtl <2.3,
        semigroups <0.19,
        text <1.3,
        unordered-containers <0.3
    default-language: Haskell2010
    hs-source-dirs: benchmark
    ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N