1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
cabal-version: 3.0
name: network-control
version: 0.0.2
license: BSD-3-Clause
license-file: LICENSE
maintainer: kazu@iij.ad.jp
author: Kazu Yamamoto
synopsis: Library to control network protocols
description: Common parts to control network protocols
category: Network
build-type: Simple
extra-doc-files: Changelog.md
library
exposed-modules: Network.Control
other-modules:
Network.Control.Flow
Network.Control.LRUCache
Network.Control.Rate
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.14 && <5,
psqueues,
unix-time
|