]> Git — Sourcephile - haskell/treeseq.git/blob - treeseq.cabal
stack: update to lts-15.4
[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.1.20200420
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@sourcephile.fr>
15 maintainer: Julien Moutinho <julm+treeseq@sourcephile.fr>
16 bug-reports: Julien Moutinho <julm+treeseq@sourcephile.fr>
17 -- homepage:
18
19 build-type: Simple
20 cabal-version: >= 1.18
21 tested-with: GHC==8.8.3
22 extra-source-files:
23 stack.yaml
24 CHANGELOG.md
25 extra-tmp-files:
26
27 Source-Repository head
28 location: git://git.sourcephile.fr/haskell/treeseq
29 type: git
30
31 Library
32 exposed-modules:
33 Data.TreeSeq.Strict
34 Data.TreeSeq.Strict.Zipper
35 default-language: Haskell2010
36 default-extensions:
37 ghc-options:
38 -Wall
39 -Wincomplete-uni-patterns
40 -Wincomplete-record-updates
41 -fno-warn-tabs
42 -- -fhide-source-paths
43 build-depends:
44 base >= 4.10 && < 5
45 , containers >= 0.5