name: krpc version: 0.2.2.0 license: BSD3 license-file: LICENSE author: Sam Truzjan maintainer: Sam Truzjan copyright: (c) 2013, Sam Truzjan category: Network build-type: Simple cabal-version: >= 1.10 tested-with: GHC == 7.4.1 , GHC == 7.6.3 homepage: https://github.com/cobit/krpc bug-reports: https://github.com/cobit/krpc/issues synopsis: KRPC remote procedure call protocol implementation. description: KRPC remote procedure call protocol implementation. . [/Release Notes/] . * /0.1.0.0:/ Initial version. . * /0.1.1.0:/ Allow passing raw argument\/result dictionaries. . * /0.2.0.0:/ Async API have been removed, use /async/ package instead. Expose caller address in handlers. source-repository head type: git location: git://github.com/cobit/krpc.git branch: master source-repository this type: git location: git://github.com/cobit/krpc.git branch: master tag: v0.2.2.0 library default-language: Haskell2010 default-extensions: PatternGuards , RecordWildCards hs-source-dirs: src exposed-modules: Remote.KRPC , Remote.KRPC.Protocol , Remote.KRPC.Scheme build-depends: base == 4.* , lifted-base >= 0.1.1 , transformers >= 0.2 , monad-control >= 0.3 , bytestring >= 0.10 , containers >= 0.4 , bencoding == 0.2.2.* , network >= 2.3 ghc-options: -Wall test-suite test-client type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: tests main-is: Client.hs other-modules: Shared build-depends: base == 4.* , bytestring , containers , process , filepath , bencoding , krpc , HUnit , test-framework , test-framework-hunit executable test-server default-language: Haskell2010 hs-source-dirs: tests main-is: Server.hs other-modules: Shared build-depends: base == 4.* , bytestring , bencoding , krpc executable bench-server default-language: Haskell2010 hs-source-dirs: bench main-is: Server.hs build-depends: base == 4.* , bytestring , krpc ghc-options: -fforce-recomp benchmark bench-client type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: bench main-is: Main.hs build-depends: base == 4.* , bytestring , criterion , krpc ghc-options: -O2 -fforce-recomp