packages feed

network-udp-0.0.0: network-udp.cabal

name:                network-udp
version:             0.0.0
synopsis:            UDP library
description:         Best current practice library for UDP clients and servers.
license:             BSD3
license-file:        LICENSE
author:              Kazu Yamamoto
maintainer:          kazu@iij.ad.jp
-- copyright:
category:            Network
build-type:          Simple
cabal-version:       >= 1.10

----------------------------------------------------------------

Source-Repository head
  Type:                 git
  Location:             https://github.com/kazu-yamamoto/network-udp

----------------------------------------------------------------

library
  exposed-modules:     Network.UDP
  other-modules:       Network.UDP.Recv
                       Network.UDP.Types
  build-depends:       base >= 4.9 && < 5
                     , bytestring
                     , containers
                     , iproute
                     , network
  -- hs-source-dirs:
  default-language:    Haskell2010
  ghc-options:         -Wall
  default-extensions:  Strict StrictData