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
|
cabal-version: 2.2
-- Initial package description 'erebos-tester.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: erebos-tester
version: 0.1.0.0
-- synopsis:
-- description:
homepage: http://erebosprotocol.net
-- bug-reports:
license: GPL-3.0-only
license-file: LICENSE
author: Roman Smrž
maintainer: roman.smrz@seznam.cz
-- copyright:
category: Testing
extra-source-files: CHANGELOG.md
executable erebos-tester
ghc-options: -Wall
main-is: Wrapper.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.13 && <5,
filepath ^>=1.4.2.1,
linux-namespaces ^>=0.1.3,
process ^>=1.6.9,
unix ^>=2.7.2.2,
hs-source-dirs: src
default-language: Haskell2010
executable erebos-tester-core
ghc-options: -Wall -threaded
main-is: Main.hs
other-modules: GDB
Output
Parser
Process
Test
Util
other-extensions: TemplateHaskell
default-extensions: DeriveGeneric
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
MultiParamTypeClasses
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
build-depends: base >=4.13 && <5,
containers ^>=0.6.2.1,
directory ^>=1.3.6.0,
filepath ^>=1.4.2.1,
generic-deriving >=1.14 && <1.15,
lens >=5.0 && <5.2,
megaparsec >=9.0 && <10,
mtl ^>=2.2.2,
process ^>=1.6.9,
regex-tdfa ^>=1.3.1.0,
scientific >=0.3 && < 0.4,
stm ^>=2.5.0.1,
text >=1.2 && <2.1,
unix ^>=2.7.2.2,
hs-source-dirs: src
default-language: Haskell2010
|