ttn-client-0.2.0.0: ttn-client.cabal
name: ttn-client
version: 0.2.0.0
synopsis: TheThingsNetwork client
description: Connect to TTN MQTT API, receive and decode messages
homepage: https://github.com/sorki/ttn-client
license: BSD3
license-file: LICENSE
author: Richard Marko
maintainer: srk@48.io
copyright: 2018 Richard Marko
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
ghc-options: -Wall -Wunused-packages
hs-source-dirs: src
exposed-modules: Data.TTN.Client
, Data.TTN.Client.Decode
build-depends: base >= 4.7 && < 5
, ttn >= 0.2
, config-ini
, bytestring
, text
, async
, stm
, net-mqtt
, network-uri
, filepath
, directory
, binary
, cayene-lpp
, base64-bytestring
default-language: Haskell2010
executable ttnc
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wunused-packages
build-depends: base
, ttn
, ttn-client
, text
, time
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/sorki/ttn-client