]> Git — Sourcephile - haskell/treemap.git/blob - treemap.cabal
Rename zipper_descendant_lookup -> zipper_child_lookups
[haskell/treemap.git] / treemap.cabal
1 author: Julien Moutinho <julm+haskell+treemap@autogeree.net>
2 -- bug-reports: http://bug.autogeree.net/haskell/treemap/
3 build-type: Simple
4 cabal-version: >= 1.8
5 category: Data Structures
6 -- data-dir: data
7 -- data-files:
8 description: A tree of Data.Map,
9 which is like a 'Map'
10 but whose key is now a 'NonEmpty' list of 'Map' keys (a 'Path')
11 enabling the possibility to gather mapped values
12 by 'Path' prefixes (inside a 'Node').
13 extra-source-files:
14 stack.yaml
15 extra-tmp-files:
16 -- homepage: http://pad.autogeree.net/informatique/haskell/treemap/
17 license: GPL-3
18 license-file: COPYING
19 maintainer: Julien Moutinho <julm+haskell+treemap@autogeree.net>
20 name: treemap
21 stability: experimental
22 synopsis: A tree of Data.Map.
23 tested-with: GHC==8.0.1
24 -- PVP: +-+------- breaking API changes
25 -- | | +----- non-breaking API additions
26 -- | | | +--- code changes with no API change
27 version: 2.1.0.20170326
28
29 source-repository head
30 location: git://git.autogeree.net/haskell/treemap
31 type: git
32
33 Flag dev
34 Default: False
35 Description: Turn on development settings.
36 Manual: True
37
38 Flag dump
39 Default: False
40 Description: Dump some intermediate files.
41 Manual: True
42
43 Flag prof
44 Default: False
45 Description: Turn on profiling settings.
46 Manual: True
47
48 Flag threaded
49 Default: False
50 Description: Enable threads.
51 Manual: True
52
53 Library
54 extensions: NoImplicitPrelude
55 ghc-options: -Wall -fno-warn-tabs
56 if flag(dev)
57 cpp-options: -DDEVELOPMENT
58 ghc-options:
59 if flag(dump)
60 ghc-options: -ddump-simpl -ddump-stg -ddump-to-file
61 if flag(prof)
62 cpp-options: -DPROFILING
63 ghc-options: -fprof-auto
64 -- default-language: Haskell2010
65 exposed-modules:
66 Data.TreeMap.Strict
67 Data.TreeMap.Strict.Zipper
68 build-depends:
69 base >= 4.6 && < 5
70 , containers >= 0.5 && < 0.6
71 , deepseq
72 , semigroups
73 , strict
74 , transformers >= 0.4 && < 0.6
75
76 Test-Suite treemap-test
77 type: exitcode-stdio-1.0
78 -- default-language: Haskell2010
79 extensions: NoImplicitPrelude
80 ghc-options: -Wall -fno-warn-tabs
81 -main-is Test
82 hs-source-dirs: Data/TreeMap
83 main-is: Test.hs
84 other-modules:
85 Strict.Test
86 if flag(threaded)
87 ghc-options: -threaded -rtsopts -with-rtsopts=-N
88 if flag(dev)
89 cpp-options: -DDEVELOPMENT
90 ghc-options:
91 if flag(prof)
92 cpp-options: -DPROFILING
93 ghc-options: -fprof-auto
94 build-depends:
95 base >= 4.6 && < 5
96 , containers >= 0.5 && < 0.6
97 , semigroups
98 , strict
99 , tasty >= 0.11
100 , tasty-hunit
101 , text
102 , transformers >= 0.4 && < 0.6
103 , treemap