1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
name: adjunctions
category: Data Structures, Adjunctions
version: 4.1.0.1
license: BSD3
cabal-version: >= 1.6
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: provisional
homepage: http://github.com/ekmett/adjunctions/
bug-reports: http://github.com/ekmett/adjunctions/issues
copyright: Copyright (C) 2011-2014 Edward A. Kmett
synopsis: Adjunctions and representable functors
description: Adjunctions and representable functors
build-type: Simple
extra-source-files:
.ghci
.gitignore
.travis.yml
.vim.custom
travis/cabal-apt-install
travis/config
HLint.hs
CHANGELOG.markdown
README.markdown
source-repository head
type: git
location: git://github.com/ekmett/adjunctions.git
library
hs-source-dirs: src
other-extensions:
CPP
FunctionalDependencies
FlexibleContexts
MultiParamTypeClasses
Rank2Types
UndecidableInstances
build-depends:
array >= 0.3.0.2 && < 0.7,
base >= 4 && < 5,
comonad >= 4 && < 5,
containers >= 0.3 && < 0.6,
contravariant >= 0.4.1 && < 1,
distributive >= 0.4 && < 1,
free >= 4 && < 5,
mtl >= 2.0.1 && < 2.3,
profunctors >= 4 && < 5,
tagged >= 0.7 && < 1,
semigroupoids >= 4 && < 5,
semigroups >= 0.11 && < 1,
transformers >= 0.2 && < 0.5,
void >= 0.5.5.1 && < 1
exposed-modules:
Control.Comonad.Representable.Store
Control.Comonad.Trans.Adjoint
Control.Monad.Representable.Reader
Control.Monad.Representable.State
Control.Monad.Trans.Adjoint
Control.Monad.Trans.Contravariant.Adjoint
Control.Monad.Trans.Conts
Data.Functor.Adjunction
Data.Functor.Contravariant.Adjunction
Data.Functor.Contravariant.Rep
Data.Functor.Rep
ghc-options: -Wall
|