-
Notifications
You must be signed in to change notification settings - Fork 13
/
tables.cabal
111 lines (101 loc) · 2.76 KB
/
tables.cabal
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: tables
category: Data, Lenses
version: 0.4.1.1
license: BSD3
cabal-version: >= 1.8
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: provisional
homepage: http://github.com/ekmett/tables/
bug-reports: http://github.com/ekmett/tables/issues
copyright: Copyright (C) 2012-2013 Edward A. Kmett
synopsis: In-memory storage with multiple keys using lenses and traversals
description:
In-memory storage with multiple keys using lenses and traversals
.
For a quick tour, see <https://github.com/ekmett/tables#examples>
build-type: Custom
tested-with: GHC == 7.6.2, GHC == 7.8.0.20140228
extra-source-files:
.travis.yml
.ghci
.gitignore
.vim.custom
travis/config
travis/cabal-apt-install
examples/*.hs
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: git://github.com/ekmett/tables.git
flag test-properties
description: Enable the properties test-suite.
default: True
manual: True
flag transformers2
description: Enables the use of old versions of transformers. Users should
never care about this.
default: False
manual: False
library
build-depends:
base >= 4.3 && < 5,
binary >= 0.5 && < 0.8,
bytes >= 0.15 && < 0.16,
cereal >= 0.3 && < 0.5,
comonad >= 4 && < 5,
containers >= 0.4 && < 0.6,
contravariant >= 1.3 && < 2,
deepseq >= 1.3 && < 1.5,
hashable >= 1.1 && < 1.3,
lens >= 4.12 && < 5,
profunctors >= 5 && < 6,
safecopy >= 0.6.3 && < 0.9,
template-haskell >= 2.7 && < 2.11,
transformers >= 0.2 && < 0.5,
transformers-compat >= 0.1 && < 1,
unordered-containers == 0.2.*
exposed-modules:
Data.Table
if impl(ghc>=7.2)
other-extensions: Trustworthy
cpp-options: -DDEFAULT_SIGNATURES=1
ghc-options: -Wall -fwarn-tabs -O2 -fdicts-cheap -funbox-strict-fields
hs-source-dirs: src
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends:
base,
containers,
directory >= 1.0,
doctest >= 0.9.1,
filepath,
lens,
transformers,
unordered-containers
ghc-options: -Wall -threaded
if impl(ghc<7.6.1)
ghc-options: -Werror
hs-source-dirs: tests
test-suite hspec
type: exitcode-stdio-1.0
main-is: hspec.hs
build-depends:
base,
containers,
directory >= 1.0,
doctest >= 0.9.1,
filepath,
hspec,
hspec-discover,
lens,
tables,
transformers,
unordered-containers
ghc-options: -Wall -threaded
if impl(ghc<7.6.1)
ghc-options: -Werror
hs-source-dirs: tests