This repository was archived by the owner on Oct 18, 2024. It is now read-only.
forked from haskell-monad/HBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHBridge.cabal
More file actions
126 lines (116 loc) · 3.11 KB
/
HBridge.cabal
File metadata and controls
126 lines (116 loc) · 3.11 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
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
cabal-version: 2.2
name: HBridge
version: 0.0.0.0
synopsis: HBridge is a MQTT message bridging tool.
description:
Please see the README on Github at
<https://github.com/emqx/HBridge#readme>
license: BSD-3-Clause
license-file: LICENSE
copyright: 2020 EMQ Technologies Co., Ltd.
author: Commelina
maintainer: maosics@gmail.com
tested-with: GHC ==8.8.1 || ==8.8.3 || ==8.10.1
category: Middleware
homepage: https://github.com/emqx/HBridge
bug-reports: https://github.com/emqx/HBridge/issues
build-type: Simple
extra-source-files:
README.md
Changelog.md
source-repository head
type: git
location: https://github.com/emqx/HBridge
library
exposed-modules:
Network.MQTT.Bridge.Environment
Network.MQTT.Bridge.Extra
Network.MQTT.Bridge.RestAPI
Network.MQTT.Bridge.Types
other-modules:
Network.MQTT.Bridge.SQL.AbsESQL
Network.MQTT.Bridge.SQL.ErrM
Network.MQTT.Bridge.SQL.LexESQL
Network.MQTT.Bridge.SQL.ParESQL
Network.MQTT.Bridge.SQL.PrintESQL
Network.MQTT.Bridge.SQL.SkelESQL
hs-source-dirs: src
build-depends:
, aeson >=1.5.2
, array
, async
, base >=4.9 && <5
, bytestring
, co-log
, containers
, ekg-core
, hesp
, monad-control
, mtl
, net-mqtt >=0.7
, network >=3.1.2
, network-uri
, optparse-applicative
, scientific
, servant >=0.18
, servant-server >=0.18
, stm
, text
, time >=1.9.1
, transformers-base
, unordered-containers
, uuid
, vector
, wai
, yaml
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
executable HBridge
main-is: Main.hs
hs-source-dirs: app
build-depends:
, aeson >=1.5.2
, array
, async
, base >=4.9 && <5
, bytestring
, co-log
, containers
, ekg-core
, HBridge
, hesp
, mtl
, net-mqtt >=0.7
, network >=3.1.2
, network-uri
, optparse-applicative
, stm
, text
, time >=1.9.1
, unordered-containers
, uuid
, vector
, warp
, yaml
default-language: Haskell2010
ghc-options:
-O2 -Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-threaded -rtsopts -with-rtsopts=-N
test-suite HBridge-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
hs-source-dirs: test
build-depends:
, base >=4.9 && <5
, HBridge
, hspec
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover ==2.*
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-threaded -rtsopts -with-rtsopts=-N