-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendoscope.cabal
63 lines (60 loc) · 1.97 KB
/
endoscope.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
name: endoscope
version: 0.1.0.0
synopsis: Toolkit for endofunction analysis
description: Please see README.md
homepage: https://github.com/chadbrewbaker/endoscope#readme
license: BSD3
license-file: LICENSE
author: Chad Brewbaker
maintainer: crb002@gmail.com
copyright: 2008-2016 Chad Brewbaker
category: Library
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: BrewLib
MatMul
Endoscope
build-depends: base >=4.7 && < 5,
vector,
containers,
array,
process,
timeout-with-results,
criterion
executable endoscope
hs-source-dirs: src
main-is: main.hs
other-modules: BrewLib
MatMul
Endoscope
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
containers,
vector,
array,
process,
timeout-with-results,
criterion
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Unit.hs
build-depends: base >= 4.7 && < 5,
endoscope,
hspec,
HUnit
benchmark endoscope-bench
type: exitcode-stdio-1.0
hs-source-dirs: src
main-is: Bench.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
endoscope,
criterion,
vector,
containers,
array,
process,
timeout-with-results