forked from foshardware/lsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
91 lines (85 loc) · 1.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: lsc
version: 0.1.5.1
github: "foshardware/lsc"
license: GPL-3
author: "Andreas Westerwick"
maintainer: "[email protected]"
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
- firrtl
- hashable
- hashtables
- kan-extensions
- lef
- lens
- linear
- matrix
- milp
- mmorph
- monad-loops
- mtl
- mwc-random
- parsec
- parsec-numbers
- primitive
- random
- SafeSemaphore
- template-haskell
- text
- time
- transformers
- vector
- vector-algorithms
- verilog
library:
source-dirs: src
ghc-options:
- -Wall
executables:
lsc:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -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