-
Notifications
You must be signed in to change notification settings - Fork 0
/
bayeux.cabal
98 lines (94 loc) · 3.06 KB
/
bayeux.cabal
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
cabal-version: 3.0
name: bayeux
version: 0.1.0.0
homepage: https://github.com/standardsemiconductor/bayeux
license: MIT
license-file: LICENSE
author: dopamane
maintainer: [email protected]
copyright: David Cox
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
data-files: data/**/*.pcf
source-repository head
type: git
location: https://github.com/standardsemiconductor/yosys-rtl
library
ghc-options: -Wall
exposed-modules: Bayeux
, Bayeux.Buffer
, Bayeux.Cell
, Bayeux.Cli
, Bayeux.Encode
, Bayeux.Flow
, Bayeux.Ice40.IO
, Bayeux.Ice40.Led
, Bayeux.Ice40.Rgb
, Bayeux.Ice40.Spi
, Bayeux.Ice40.Spram
, Bayeux.Lp
, Bayeux.Mux
, Bayeux.Rtl
, Bayeux.Signal
, Bayeux.Tableaux
, Bayeux.Uart
, Bayeux.Width
other-modules: Paths_bayeux
autogen-modules: Paths_bayeux
build-depends: array
, async >= 2.0
, base
, bytestring
, containers
, filepath
, finite-typelits
, megaparsec
, mtl
, parser-combinators
, prettyprinter
, serialport
, shake
, text
, yosys-rtl
hs-source-dirs: lib
default-language: Haskell2010
executable bx
ghc-options: -Wall
main-is: Main.hs
build-depends: base
, bayeux
, optparse-applicative
hs-source-dirs: exe
default-language: Haskell2010
test-suite test
ghc-options: -Wall -threaded
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.Bayeux.Buffer
, Test.Bayeux.Ice40
, Test.Bayeux.Ice40.Led
, Test.Bayeux.Ice40.Rgb
, Test.Bayeux.Ice40.Spram
, Test.Bayeux.Lp
, Test.Bayeux.Rtl
, Test.Bayeux.Signal
, Test.Bayeux.Uart
build-depends: array
, base
, bayeux
, extra
, filepath
, finite-typelits
, hedgehog
, megaparsec
, prettyprinter
, process
, tasty
, tasty-golden
, tasty-hedgehog
, tasty-hunit
, text
, yosys-rtl