name: linx-gateway version: 0.1.0.0 synopsis: Implementation of the Enea LINX gateway protocol. description: Implementation of the Enea LINX gateway protocol. The protocol enables clients to communicate through a gateway server. Base transport for the protocol is TCP. homepage: https://github.com/kosmoskatten/linx-gateway bug-reports: https://github.com/kosmoskatten/linx-gateway/issues license: MIT license-file: LICENSE author: Patrik Sandahl maintainer: kosmoskatten.software@gmail.com stability: experimental copyright: Patrik Sandahl category: Network build-type: Simple extra-source-files: README.md cabal-version: >=1.10 source-repository head type: git location: https://github.com/kosmoskatten/linx-gateway library exposed-modules: Network.Linx.Gateway , Network.Linx.Gateway.Message , Network.Linx.Gateway.Signal , Network.Linx.Gateway.Types other-modules: Network.Linx.Gateway.BinaryInt32 , Network.Linx.Gateway.BinaryList build-depends: base >=4.6 && <4.7 , binary >= 0.6 && <0.7.2 , bytestring >= 0.10 && <0.10.1 , network >= 2.4 && <2.5 hs-source-dirs: src ghc-options: -Wall default-language: Haskell2010 test-suite linx-gateway-tests type: exitcode-stdio-1.0 main-is: TestMain.hs build-depends: base >=4.6 && <4.7 , binary >= 0.6 && <0.7.2 , bytestring >= 0.10 && <0.10.1 , QuickCheck >= 2 , test-framework >= 0.8 && <0.9 , test-framework-quickcheck2 >= 0.3.0.2 && <0.3.0.3 hs-source-dirs: test, src other-modules: Generators , MessageProperties , SignalProperties ghc-options: -Wall -fno-warn-orphans default-language: Haskell2010 executable Ping main-is: Ping.hs other-modules: PingMessage build-depends: base >=4.6 && <4.7 , binary >= 0.6 && <0.7.2 , bytestring >= 0.10 && <0.10.1 , network >= 2.4 && <2.5 , time >= 1.4 && <1.5 hs-source-dirs: examples, src ghc-options: -Wall -fno-warn-unused-do-bind default-language: Haskell2010