packages feed

profunctors-4.4.1: profunctors.cabal

name:          profunctors
category:      Control, Categories
version:       4.4.1
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekmett@gmail.com>
stability:     experimental
homepage:      http://github.com/ekmett/profunctors/
bug-reports:   http://github.com/ekmett/profunctors/issues
copyright:     Copyright (C) 2011-2014 Edward A. Kmett
synopsis:      Profunctors
description:   Profunctors
build-type:    Simple
extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  .vim.custom
  README.markdown
  CHANGELOG.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/profunctors.git

library
  build-depends:
    base                >= 4     && < 5,
    comonad             >= 4     && < 5,
    distributive        >= 0.4.4 && < 1,
    semigroupoids       >= 4     && < 5,
    tagged              >= 0.4.4 && < 1,
    transformers        >= 0.2   && < 0.5

  exposed-modules:
    Data.Profunctor
    Data.Profunctor.Adjunction
    Data.Profunctor.Cayley
    Data.Profunctor.Closed
    Data.Profunctor.Codensity
    Data.Profunctor.Composition
    Data.Profunctor.Collage
    Data.Profunctor.Monad
    Data.Profunctor.Monoid
    Data.Profunctor.Ran
    Data.Profunctor.Rep
    Data.Profunctor.Tambara
    Data.Profunctor.Trace
    Data.Profunctor.Unsafe

  ghc-options:     -Wall -O2
  hs-source-dirs:  src

  default-language: Haskell2010
  other-extensions:
    CPP
    GADTs
    FlexibleContexts
    FlexibleInstances
    UndecidableInstances
    TypeFamilies