-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
38 lines (32 loc) · 1.05 KB
/
package.yaml
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
name: rfun-interpreter
version: 0.1.0.0
github: "jtkristensen/rfun-interpreter"
license: BSD3
author: "Joachim Tilsted Kristensen"
maintainer: "tilsted@di.ku.dk"
copyright: "2022 Joachim Tilsted Kristensen"
extra-source-files:
- README.md
synopsis: A prototype implementation of the RFun language.
category: Domain Specific Languages, Reversible Computing.
description: Please see the README on GitHub at <https://github.com/jtkristensen/rfun-interpreter/blob/main/README.md>
dependencies:
- base >= 4.7 && < 5
- tasty >= 1.4 && < 1.5
- tasty-hunit >= 0.10 && < 0.11
- tasty-quickcheck >= 0.10 && < 0.11
- tasty-smallcheck >= 0.8 && < 0.9
- parsec >= 3.1 && < 3.2
- mtl >= 2.2 && < 2.3
library:
source-dirs: src
tests:
rfun-interpreter-test:
main: Driver.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- rfun-interpreter