-
Notifications
You must be signed in to change notification settings - Fork 0
/
hrange.cabal
147 lines (140 loc) · 4.68 KB
/
hrange.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: hrange
version: 0.1.0.0
synopsis: An experimental haskell implementation of the range query language.
description: Please see README.md
homepage: http://github.com/xaviershay/hrange
license: MIT
author: Xavier Shay
maintainer: [email protected]
copyright: 2016 Xavier Shay
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Hrange
other-modules: Hrange.Evaluator
, Hrange.Compress
, Hrange.Parser
, Hrange.Text
, Hrange.Types
, Hrange.Yaml
build-depends: base >= 4.7 && < 5
, containers
, deepseq
, extra
, filemanip
, filepath
, hashable
, lens
, mtl
, natural-sort
, parsec
, regex-tdfa
, scientific
, text
, text-format
, unordered-containers
, vector
, yaml
default-language: Haskell2010
executable hrange-server
ghc-options: -Wall
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, blaze-builder
, BoundedChan
, bytestring
, criterion
, deepseq
, hashable
, hrange
, http-types
, microtimer
, pretty-show
, regex-tdfa
, stm
, text
, text-format
, time
, utf8-string
, wai
, wai-extra
, warp
other-modules: Logging
default-language: Haskell2010
executable ergh
ghc-options: -Wall
hs-source-dirs: cli
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, hrange
, text
, pretty-show
default-language: Haskell2010
-- These tests may depend on internal functions and types. Useful for unit and
-- quick checks.
test-suite hrange-internal-test
-- Orphan instances are used for quickcheck definitions. No great options,
-- https://github.com/massysett/prednote/blob/master/Where_QuickCheck.md
-- provides a good summary.
ghc-options: -Wall -fno-warn-orphans
type: exitcode-stdio-1.0
hs-source-dirs: src,test/internal
main-is: Main.hs
other-modules: Hrange
, Hrange.Evaluator
, Hrange.Compress
, Hrange.Parser
, Hrange.Text
, Hrange.Types
, Hrange.Yaml
build-depends: base
, tasty
, tasty-hunit
, tasty-quickcheck
, containers
, deepseq
, extra
, filemanip
, filepath
, hashable
, lens
, mtl
, natural-sort
, parsec
, regex-tdfa
, scientific
, text
, text-format
, unordered-containers
, vector
, yaml
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
-- These tests may only use the public API.
test-suite hrange-test
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test/functional
main-is: Main.hs
build-depends: base
, directory
, filemanip
, filepath
, hrange
, parsec
, tasty
, tasty-hunit
, text
, unordered-containers
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/xaviershay/hrange