name: nanomsg-haskell version: 0.2.5 synopsis: Bindings to the nanomsg library description: This is a Haskell binding for the nanomsg library: . . There's support for (evented) blocking send and recv, a non-blocking receive, and for all the socket types and the functions you need to wire them up and tear them down again. . Most sockets options are available through accessor and mutator functions. Sockets are typed, transports are not. homepage: https://github.com/ivarnymoen/nanomsg-haskell license: MIT license-file: LICENSE author: Ivar Nymoen maintainer: Ben Gamari copyright: Copyright (c) 2013 the nanomsg-haskell authors category: Network build-type: Simple cabal-version: >=1.10 tested-with: GHC == 9.4.7, GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1, GHC == 9.12.2 extra-source-files: README.md , CONTRIBUTORS , changelog , tests/*.hs , benchmarks/*.hs library hs-source-dirs: src ghc-options: -O2 -Wall -fwarn-tabs default-language: Haskell2010 exposed-modules: Nanomsg Nanomsg.Binary default-extensions: ForeignFunctionInterface, DeriveDataTypeable includes: nanomsg/nn.h extra-libraries: nanomsg build-depends: base >= 4.5 && < 5, bytestring >= 0.9.0 && < 0.13, binary >= 0.7 && < 0.9 test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: Main.hs other-modules: BinaryProperties Properties ghc-options: -O2 -Wall -fwarn-tabs -threaded "-with-rtsopts=-N" -rtsopts default-language: Haskell2010 build-depends: base >= 4.5 && < 5, bytestring >= 0.9.0 && < 0.13, nanomsg-haskell, QuickCheck, tasty, tasty-quickcheck source-repository head type: git location: https://github.com/ivarnymoen/nanomsg-haskell benchmark send-messages type: exitcode-stdio-1.0 main-is: SendMessages.hs ghc-options: -O2 -Wall -fwarn-tabs -threaded "-with-rtsopts=-N" -rtsopts default-language: Haskell2010 hs-source-dirs: benchmarks build-depends: base >= 4.5 && < 5, bytestring >= 0.9.0 && < 0.13, nanomsg-haskell, criterion benchmark vs-zeromq-bindings type: exitcode-stdio-1.0 main-is: Zmq.hs ghc-options: -O2 -Wall -fwarn-tabs -threaded "-with-rtsopts=-N" -rtsopts default-language: Haskell2010 hs-source-dirs: benchmarks build-depends: base >= 4.5 && < 5, bytestring >= 0.9.0 && < 0.13, nanomsg-haskell, zeromq4-haskell, criterion