-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch.cabal
61 lines (55 loc) · 1.52 KB
/
search.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
name: search
category: Math, Topology, Search
version: 0.2
license: BSD3
cabal-version: >= 1.8
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <[email protected]>
stability: provisional
homepage: http://github.com/ekmett/search/
bug-reports: http://github.com/ekmett/search/issues
copyright: Copyright (C) 2014 Edward A. Kmett
synopsis: Infinite search in finite time with Hilbert's epsilon
description: Infinite search in finite time with Hilbert's epsilon
build-type: Custom
extra-source-files:
.travis.yml
.vim.custom
travis/config
CHANGELOG.markdown
README.markdown
custom-setup
setup-depends:
base >= 4 && <5,
Cabal,
cabal-doctest >= 1 && <1.1
source-repository head
type: git
location: git://github.com/ekmett/search.git
library
build-depends:
base >= 4.8 && < 5,
ghc-prim,
profunctors >= 4 && < 6,
semigroupoids >= 4 && < 6,
tagged >= 0.7 && < 1,
transformers >= 0.3 && < 0.6
exposed-modules:
Data.Search
Data.Search.Intensional
Data.Search.LazyBool
ghc-options: -Wall -fwarn-tabs -O2
hs-source-dirs: src
-- Verify the results of the examples
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
ghc-options: -Wall -threaded
hs-source-dirs: tests
build-depends:
base,
directory >= 1.0 && < 1.3,
doctest >= 0.8 && < 0.14,
filepath >= 1.3 && < 1.5,
search