name: zeromq4-clone-pattern version: 0.1.0.0 x-revision: 1 synopsis: Haskell implementation of the ZeroMQ clone pattern. description: Haskell implementation of the ZeroMQ Reliable Pub-Sub (Clone) pattern. . DEPRECATED BY https://hackage.haskell.org/package/zeromq4-patterns homepage: https://github.com/hverr/zeromq4-clone-pattern#readme bug-reports: https://github.com/hverr/zeromq4-clone-pattern/issues author: Henri Verroken maintainer: henriverroken@gmail.com copyright: 2018 Henri Verroken license: BSD3 license-file: LICENSE build-type: Simple cabal-version: >= 1.10 category: System extra-source-files: README.md source-repository head type: git location: https://github.com/hverr/zeromq4-clone-pattern library hs-source-dirs: src exposed-modules: System.ZMQ4.Patterns.Clone , System.ZMQ4.Patterns.Clone.Internal build-depends: base >=4.7 && <5 , async , binary , bytestring , exceptions , stm , transformers , zeromq4-haskell default-language: Haskell2010 ghc-options: -Wall executable zeromq4-clone-pattern-exe main-is: Main.hs hs-source-dirs: example build-depends: base >=4.7 && <5 , zeromq4-clone-pattern default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall test-suite zeromq4-clone-pattern-test type: exitcode-stdio-1.0 main-is: Spec.hs hs-source-dirs: test ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall build-depends: base >=4.7 && <5 , zeromq4-clone-pattern , QuickCheck , async , binary , bytestring , test-framework , test-framework-quickcheck2 default-language: Haskell2010 ghc-options: -Wall