-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap-exts.cabal
More file actions
47 lines (44 loc) · 1.56 KB
/
map-exts.cabal
File metadata and controls
47 lines (44 loc) · 1.56 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
name: map-exts
version: 0.2.0.1
synopsis: Extensions to Data.Map
description: Extensions to Data.Map
homepage: http://github.com/charles-cooper/map-exts#readme
license: BSD3
license-file: LICENSE
author: Charles Cooper
maintainer: cooper.charles.m@gmail.com
copyright: 2016 Elsen, Inc
category: Data Structures
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/charles-cooper/map-exts
library
hs-source-dirs: src
exposed-modules: Data.Map.Extensions
other-modules: Data.Map.Function
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
containers >= 0.5.8.1 && < 0.7
executable example
hs-source-dirs: examples, src
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
containers >= 0.5 && < 0.7
other-modules: Data.Map.Extensions
Data.Map.Function
executable titanic-example
hs-source-dirs: examples, src
main-is: Titanic.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
containers >= 0.5 && < 0.7,
cassava,
bytestring
other-modules: Data.Map.Extensions
Data.Map.Function