-
Notifications
You must be signed in to change notification settings - Fork 0
/
rfxcom.cabal
104 lines (97 loc) · 3.8 KB
/
rfxcom.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
name: rfxcom
version: 0.1.0.0
synopsis: Simple project template from stack
description: Please see README.md
homepage: https://bitbucket.org/dnulnets/rfxcom
license: BSD3
license-file: LICENSE
author: Tomas Stenlund
maintainer: tomas.stenlund@telia.com
copyright: (c) 2016 Tomas Stenlund
category: Application,Utility
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -threaded
build-depends: base >= 4.7 && < 5,
serialport,
bytestring,
pipes,
text,
pipes-bytestring,
pipes-safe,
pipes-binary,
pipes-parse,
binary,
managed,
time,
unix,
directory,
mtl,
transformers,
exceptions,
mqtt-hs,
stm,
aeson
exposed-modules: RFXCom.Message.Base,
RFXCom.Message.BaseMessage,
RFXCom.Message.TemperatureAndHumidity,
RFXCom.Message.Security1,
RFXCom.Message.Decoder,
RFXCom.System.Log,
RFXCom.System.Log.FileHandle,
RFXCom.System.Concurrent,
RFXCom.System.Exception,
RFXCom.Control.RFXComWriter,
RFXCom.Control.RFXComReader,
RFXCom.Control.RFXComMaster,
RFXCom.Control.RFXComMQTT,
RFXCom.Control.RFXComPublisher,
RFXCom.Message.Encoder,
RFXCom.Message.InterfaceControl,
RFXCom.Message.InterfaceResponse
executable rfxcom
default-language: Haskell2010
hs-source-dirs: src
other-modules: RFXCom.Message.Base,
RFXCom.Message.BaseMessage,
RFXCom.Message.TemperatureAndHumidity,
RFXCom.Message.Security1,
RFXCom.Message.Decoder,
RFXCom.System.Log,
RFXCom.System.Log.FileHandle,
RFXCom.System.Concurrent,
RFXCom.System.Exception,
RFXCom.Control.RFXComWriter,
RFXCom.Control.RFXComReader,
RFXCom.Control.RFXComMaster,
RFXCom.Control.RFXComMQTT,
RFXCom.Control.RFXComPublisher,
RFXCom.Message.Encoder,
RFXCom.Message.InterfaceControl,
RFXCom.Message.InterfaceResponse
main-is: Main.hs
default-language: Haskell2010
ghc-options: -threaded
build-depends: base >= 4.7 && < 5,
serialport,
bytestring,
pipes,
text,
pipes-bytestring,
pipes-safe,
pipes-binary,
pipes-parse,
binary,
managed,
time,
unix,
directory,
mtl,
transformers,
exceptions,
mqtt-hs,
stm,
aeson