-
Notifications
You must be signed in to change notification settings - Fork 0
/
gasp.cabal
159 lines (154 loc) · 3.63 KB
/
gasp.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: bc1099f7a36ca06233b65346fa525705de042ce5aeb4aa4565b876a914f004e5
name: gasp
version: 0.1.0.1
description: Please see the README on GitHub at <https://github.com/Lupino/gasp#readme>
homepage: https://github.com/Lupino/gasp#readme
bug-reports: https://github.com/Lupino/gasp/issues
author: gasp-lang
maintainer: lmjubuntu@gmail.com
copyright: 2020 gasp-lang
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
data-files:
template/module/config_serial.gasp
template/module/convert.gasp
template/module/delay.gasp
template/module/gl_serial.gasp
template/module/memory.gasp
template/module/modbus.gasp
template/module/switch.gasp
template/stage0/attr.gasp
template/stage0/bin.gasp
template/stage0/linkage.gasp
template/stage0/main.gasp
template/stage0/metric.gasp
template/stage0/report.gasp
template/stage0/timer.gasp
template/stage0/uart-like.gasp
template/stage1/constants.gasp
template/stage1/debug.gasp
template/stage1/every.gasp
template/stage1/givelink.gasp
template/stage1/gpio.gasp
template/stage1/main.gasp
template/stage1/rule.gasp
template/stage1/stroage.gasp
template/stage1/utils.gasp
template/stage2/api.yaml
template/stage2/config.mk
template/stage2/doc.md
template/stage2/Makefile
template/stage2/stage2.h
template/stage2/stage2.ino
data-dir: data/
source-repository head
type: git
location: https://github.com/Lupino/gasp
library
exposed-modules:
CompileOptions
ExternalCode
Gasp
Gasp.AGpio
Gasp.App
Gasp.Attr
Gasp.Bin
Gasp.Block
Gasp.Command
Gasp.Common
Gasp.Constant
Gasp.Every
Gasp.Function
Gasp.Gpio
Gasp.Linkage
Gasp.Metric
Gasp.Rule
Gasp.Timer
Gasp.Uart
Generator
Generator.AppGenerator
Generator.AppGenerator.Common
Generator.ExternalCodeGenerator
Generator.FileDraft
Generator.FileDraft.CopyFileDraft
Generator.FileDraft.TemplateFileDraft
Generator.FileDraft.Writeable
Generator.FileDraft.WriteableMonad
Generator.Template
Lexer
Lib
Parser
Parser.AGpio
Parser.App
Parser.Attr
Parser.Bin
Parser.Block
Parser.Command
Parser.Common
Parser.Constant
Parser.Every
Parser.Function
Parser.Gpio
Parser.Linkage
Parser.Metric
Parser.Rule
Parser.Timer
Parser.Uart
Util.IO
Util.Terminal
other-modules:
Paths_gasp
hs-source-dirs:
src
default-extensions:
OverloadedStrings
ghc-options: -Wall -optP-Wno-nonportable-include-path
build-depends:
aeson
, base >=4.7 && <5
, base16-bytestring
, binary
, bytestring
, directory
, filepath
, mtl
, mustache
, parsec
, text
, uuid
, yaml
default-language: Haskell2010
executable gasp
main-is: Main.hs
other-modules:
Command
Command.Clean
Command.Common
Command.Compile
Command.CreateNewProject
Command.Watch
Paths_gasp
hs-source-dirs:
cli
default-extensions:
OverloadedStrings
ghc-options: -Wall -optP-Wno-nonportable-include-path -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, directory
, filepath
, fsnotify
, gasp
, mtl
, text
, time
default-language: Haskell2010