packages feed

compact-socket-0.1.0.0: compact-socket.cabal

name:                compact-socket
version:             0.1.0.0
synopsis: Socket functions for compact normal form.
description: A sample implementation of transmitting compact normal forms over sockets.  Needs a custom version of GHC, see https://github.com/gcampax/ghc/releases
license: BSD3
license-file:        LICENSE
author:              Ömer Sinan Ağacan
maintainer:          omeragacan@gmail.com
-- copyright:
category: Network
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  exposed-modules:     Data.Compact.Socket
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -O2 -Wall

  build-depends:
    base >=4.8 && <4.9,
    binary,
    bytestring,
    compact,
    deepseq,
    directory,
    filepath,
    network,
    unix