-
Notifications
You must be signed in to change notification settings - Fork 1
/
iterable.cabal
42 lines (37 loc) · 1.74 KB
/
iterable.cabal
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
name: iterable
version: 3.0.1
stability: stable
homepage: https://github.com/BioHaskell/iterable
package-url: http://hackage.haskell.org/package/iterable
synopsis: API for hierarchical multilevel collections.
description: Two-argument typeclass that generalizes Foldable, Functor, and Traversable for monomorphic
multi-level collections. Transitive instances allow for folding and mapping over any
subordinate level of the hierarchy.
.
Main interface for hPDB library.
.
Contains convenience TemplateHaskell methods for generating Iterable instances that have Vector containers.
category: Data Structures
license: BSD3
license-file: LICENSE
author: Michal J. Gajda
copyright: Copyright by Michal J. Gajda '2013
maintainer: [email protected]
bug-reports: mailto:[email protected]
build-type: Simple
cabal-version: >=1.8
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.1, GHC==8.2.2
data-files: README.md
extra-source-files: changelog
source-repository head
type: git
location: https://github.com/BioHaskell/iterable.git
Library
build-depends: base > 4 && <=5,
mtl >= 2.0,
vector >= 0.9,
template-haskell >= 2.7,
tagged >= 0.7
other-extensions: TemplateHaskell, MultiParamTypeClasses, FlexibleInstances
exposed-modules: Data.Iterable, Data.Iterable.Instantiate, Data.Iterable.Instantiate.Vector
exposed: True