forked from duairc/forest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforest.cabal
More file actions
53 lines (45 loc) · 1.28 KB
/
forest.cabal
File metadata and controls
53 lines (45 loc) · 1.28 KB
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
name: forest
version: 0.2.1.1
synopsis: Tree and Forest types
license: MPL-2.0
license-file: LICENSE
author: Shane O'Brien
maintainer: [email protected]
stability: Experimental
category: Control
cabal-version: >= 1.6
homepage: https://github.com/duairc/forest
bug-reports: https://github.com/duairc/forest/issues
build-type: Simple
description:
Tree and Forest types, where the leafs and branches of a tree can store
different types of data, and forests are parameterised by an arbitrary
functor (usually @[]@, but sometimes you might want @NonEmpty@ for example).
Library
hs-source-dirs:
src
exposed-modules:
Data.Tree.Forest
build-depends:
aeson >= 0.2 && < 2,
base >= 4.2 && < 5,
comonad >= 5.0 && < 6,
deepseq >= 1.1 && < 2,
free >= 4.12 && < 6,
hashable >= 1.2 && < 2,
profunctors >= 3.2 && < 6,
semigroupoids >= 1.0 && < 6
if impl(ghc < 8)
build-depends:
semigroups >= 0.1 && < 0.20,
transformers >= 0.4 && < 0.6
if impl(ghc < 8.2)
build-depends:
bifunctors >= 0.1 && < 6
if impl(ghc >= 7.2 && < 7.6)
build-depends: ghc-prim == 0.2.0.0
ghc-options:
-Wall
source-repository head
type: git
location: https://github.com/duairc/forest.git