-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.yaml
88 lines (80 loc) · 2.22 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
name: net-mqtt
version: 0.8.6.1
github: "dustin/mqtt-hs"
license: BSD3
author: "Dustin Sallings"
maintainer: "dustin@spy.net"
copyright: "BSD3"
extra-source-files:
- README.md
- Changelog.md
# Metadata used when publishing your package
synopsis: An MQTT Protocol Implementation.
category: Network
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/dustin/mqtt-hs#readme>
dependencies:
- base >= 4.7 && < 5
- async >= 2.2.1 && < 2.3
- bytestring >= 0.10.8 && < 0.12
- text >= 1.2.3 && < 2.1.0
- binary >= 0.8.5 && < 0.9
- containers >= 0.5.0 && < 0.7
- stm >= 2.4.0 && < 2.6
- attoparsec >= 0.13.2 && < 0.15
- conduit >= 1.3.1 && < 1.5
- conduit-extra >= 1.3.0 && < 1.5
- network-conduit-tls >= 1.4 && < 1.5
- network-uri >= 2.6.1 && < 2.7
- attoparsec-binary >= 0.2 && < 1.0
- deepseq >= 1.4.3.0 && < 1.5
- QuickCheck >= 2.12.6.1 && < 2.15
- websockets >= 0.12.5.3 && < 0.13
- crypton-connection >= 0.3.0
- monad-loops >= 0.4.3
- time >= 1.9
- data-default-class >= 0.1.2
library:
source-dirs: src
executables:
mqtt-example:
main: Main.hs
source-dirs: app/example
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- net-mqtt
mqtt-watch:
main: Main.hs
source-dirs: app/mqtt-watch
ghc-options:
- -threaded
- -rtsopts
- -eventlog
- -with-rtsopts=-N
dependencies:
- net-mqtt
- optparse-applicative
- bytestring
tests:
mqtt-test:
main: Main.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- net-mqtt
- HUnit
- tasty
- tasty-hunit
- tasty-quickcheck
- tasty-discover
- checkers
- mtl
- lens