]> Git — Sourcephile - haskell/treemap.git/blob - treemap.cabal
Add intersection.
[haskell/treemap.git] / treemap.cabal
1 author: Julien Moutinho <julm+treemap@autogeree.net>
2 -- bug-reports: http://bug.autogeree.net/haskell/treemap/
3 build-type: Simple
4 cabal-version: >= 1.10
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+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.3.0.20171215
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 default-extensions: NoImplicitPrelude
55 default-language: Haskell2010
56 ghc-options: -Wall -fno-warn-tabs
57 if flag(dev)
58 cpp-options: -DDEVELOPMENT
59 ghc-options:
60 if flag(dump)
61 ghc-options: -ddump-simpl -ddump-stg -ddump-to-file
62 if flag(prof)
63 cpp-options: -DPROFILING
64 ghc-options: -fprof-auto
65 -- default-language: Haskell2010
66 exposed-modules:
67 Data.TreeMap.Strict
68 Data.TreeMap.Strict.Zipper
69 build-depends:
70 base >= 4.6 && < 5
71 , containers >= 0.5 && < 0.6
72 , deepseq
73 , mono-traversable
74 , semigroups
75 , strict
76 , transformers >= 0.4 && < 0.6
77
78 Test-Suite treemap-test
79 type: exitcode-stdio-1.0
80 -- default-language: Haskell2010
81 default-extensions: NoImplicitPrelude
82 default-language: Haskell2010
83 ghc-options: -Wall -fno-warn-tabs
84 -main-is Test
85 hs-source-dirs: test
86 main-is: Test.hs
87 other-modules:
88 Strict
89 if flag(threaded)
90 ghc-options: -threaded -rtsopts -with-rtsopts=-N
91 if flag(dev)
92 cpp-options: -DDEVELOPMENT
93 ghc-options:
94 if flag(prof)
95 cpp-options: -DPROFILING
96 ghc-options: -fprof-auto
97 build-depends:
98 base >= 4.6 && < 5
99 , containers >= 0.5 && < 0.6
100 , mono-traversable
101 , semigroups
102 , strict
103 , tasty >= 0.11
104 , tasty-hunit
105 , text
106 , transformers >= 0.4 && < 0.6
107 , treemap