packages feed

kafka-device-0.2.1.2: kafka-device.cabal

name:                kafka-device
version:             0.2.1.2
synopsis:            UI device events via a Kafka message broker
description:         This package contains functions for passing UI device events to topics on a Kafka message broker \<<https://kafka.apache.org/>\>.  Also see \<<https://hackage.haskell.org/package/kafka-device-joystick/>\>, \<<https://hackage.haskell.org/package/kafka-device-glut/>\>, \<<https://hackage.haskell.org/package/kafka-device-spacenav/>\>, \<<https://hackage.haskell.org/package/kafka-device-leap/>\>.
license:             MIT
license-file:        LICENSE
author:              Brian W Bush <consult@brianwbush.info>
maintainer:          Brian W Bush <consult@brianwbush.info>
copyright:           (c) 2016-17 Brian W Bush
category:            Hardware
build-type:          Simple
cabal-version:       >= 1.10
stability:           Experimental
homepage:            https://bitbucket.org/functionally/kafka-device
bug-reports:         https://bwbush.atlassian.net/projects/HKAFDEV/issues/
package-url:         https://bitbucket.org/functionally/kafka-device/downloads/kafka-device-$version.tar.gz

extra-source-files:  ReadMe.md

source-repository head
  type: git
  location: https://bitbucket.org/functionally/kafka-device
 
library
  exposed-modules:  Network.UI.Kafka
                    Network.UI.Kafka.Interpretation
                    Network.UI.Kafka.Keyboard
                    Network.UI.Kafka.Types
  build-depends:    base         >= 4.8 && < 5
               ,    aeson        >= 0.11.3
               ,    binary       >= 0.7.2
               ,    bytestring   >= 0.10.6
               ,    cereal       >= 0.5.4
               ,    linear       >= 1.20.5
               ,    milena       >= 0.5.0
               ,    mtl          >= 2.2.1
  hs-source-dirs:   src
  ghc-options:      -Wall
  default-language: Haskell2010

executable kafka-device
  main-is:          Main.hs
  build-depends:    base
               ,    aeson
               ,    binary
               ,    bytestring
               ,    cereal
               ,    linear
               ,    milena
               ,    mtl
  hs-source-dirs:   src
  ghc-options:      -Wall -threaded
  default-language: Haskell2010

executable kafka-device-keyboard
  main-is:          MainKeyboard.hs
  build-depends:    base
               ,    aeson
               ,    binary
               ,    bytestring
               ,    cereal
               ,    linear
               ,    milena
               ,    mtl
  hs-source-dirs:   src
  ghc-options:      -Wall -threaded
  default-language: Haskell2010