name: hs-server-starter version: 0.1.0.1 synopsis: Write a server supporting Server::Starter's protocol in Haskell description: Provides a utility to write server program which can be called via Perl's https://github.com/kazuho/p5-Server-Starter program using Haskell. This module does not provide a Haskell implementation of start_server, so you need to use the original Perl version or use a version ported to golang. homepage: https://github.com/hiratara/hs-server-starter license: BSD3 license-file: LICENSE author: Masahiro Honma maintainer: hiratara@cpan.org copyright: Copyright 2017- hiratara category: value build-type: Simple extra-source-files: README.md cabal-version: >=1.10 flag example description: Build the example application default: False library hs-source-dirs: src exposed-modules: Network.ServerStarter.Socket build-depends: base >= 4.7 && < 5 , directory >= 1.3.0.0 && < 1.4 , network >= 2.6.3.1 && < 2.7 default-language: Haskell2010 executable server-starter-warp-example if ! flag(example) buildable: False hs-source-dirs: app main-is: server-starter-warp-example.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , hs-server-starter , http-types , warp , wai , network default-language: Haskell2010 test-suite hs-server-starter-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: test-ss-socket.hs build-depends: base , hs-server-starter , network , temporary , unix , HUnit ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/hiratara/hs-server-starter