forked from foshardware/lsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
100 lines (93 loc) · 1.51 KB
/
package.yaml
File metadata and controls
100 lines (93 loc) · 1.51 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright 2018 - Andreas Westerwick <westerwick@pconas.de>
# SPDX-License-Identifier: GPL-3.0-or-later
name: lsc
version: 0.2.0.2
github: "foshardware/lsc"
license: GPL-3
author: "Andreas Westerwick"
maintainer: "westerwick@pconas.de"
copyright: "2019 Andreas Westerwick"
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- aeson
- array
- arrowgant
- async
- base16-bytestring
- blaze-svg
- blif
- bytestring
- cabal-file-th
- cereal
- concurrent-output
- containers
- cond
- data-default
- data-default-class
- def
- entropy
- file-embed
- filepath
- firrtl
- hashable
- hashtables
- kan-extensions
- lef
- lens
- linear
- matrix
- mmorph
- monad-loops
- mtl
- mwc-random
- parallel
- parsec
- parsec-numbers
- primitive
- random
- SafeSemaphore
- split
- template-haskell
- text
- time
- transformers
- unordered-containers
- vector
- vector-algorithms
- verilog
library:
source-dirs: src
ghc-options:
- -Wall
- -O2
executables:
lsc:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -O2
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- lsc
tests:
lsc-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- lsc
- tasty
- tasty-hunit
- tasty-quickcheck
- lens
- data-default
- unordered-containers