forked from formura/formura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
67 lines (64 loc) · 1.07 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
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
name: formura
version: '2.3'
synopsis: Formura is a simple language to describe stencil computation.
category: Language
author: Takayuki Muranushi, Youhei Ishihara
maintainer: [email protected]
license: MIT
homepage: https://github.com/formura/formura#readme
git: git://github.com/formura/formura.git
ghc-options:
- -O3
- -Wall
- -fno-warn-unused-do-bind
dependencies:
- base ==4.*
- aeson
- ansi-wl-pprint
- bytestring
- containers
- lens
- mtl
- scientific
- text
- trifecta
- yaml
library:
source-dirs: src
ghc-options:
- -fsimpl-tick-factor=326680
dependencies:
- binary-search >=1.0.0.3
- blaze-markup
- cases
- directory
- filepath
- gitrev
- lattices
- mmorph
- optparse-applicative
- parsers
- process
- QuickCheck
- sbv
- syb
- temporary
- tostring
- transformers
- unordered-containers
- vector
executables:
formura:
main: formura.hs
source-dirs: app
ghc-options:
- -rtsopts
dependencies:
- formura
tests:
spec:
main: Spec.hs
source-dirs: test
dependencies:
- formura
- hspec