]> Git — Sourcephile - haskell/treeseq.git/blob - treeseq.cabal
stack: bump to lts-12.25
[haskell/treeseq.git] / treeseq.cabal
1 name: treeseq
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 1.0.0.20180213
6 category: Data Structures
7 synopsis: Library for a multi-way tree (rose tree), using Seq (finger tree) for forests
8 description: Like 'Data.Tree' of @containers@,
9 but use 'Data.Sequence' instead of 'Data.List' for forests ('Trees').
10 extra-doc-files:
11 license: GPL-3
12 license-file: COPYING
13 stability: experimental
14 author: Julien Moutinho <julm+treeseq@autogeree.net>
15 maintainer: Julien Moutinho <julm+treeseq@autogeree.net>
16 bug-reports: Julien Moutinho <julm+treeseq@autogeree.net>
17 -- homepage:
18
19 build-type: Simple
20 cabal-version: >= 1.18
21 tested-with: GHC==8.2.2
22 extra-source-files:
23 stack.yaml
24 extra-tmp-files:
25
26 Source-Repository head
27 location: git://git.autogeree.net/treeseq
28 type: git
29
30 Library
31 exposed-modules:
32 Data.TreeSeq.Strict
33 Data.TreeSeq.Strict.Zipper
34 default-language: Haskell2010
35 default-extensions:
36 ghc-options:
37 -Wall
38 -Wincomplete-uni-patterns
39 -Wincomplete-record-updates
40 -fno-warn-tabs
41 -- -fhide-source-paths
42 build-depends:
43 base >= 4.10 && < 5
44 , containers >= 0.5