packages feed

concurrent-dns-cache-0.1.3: concurrent-dns-cache.cabal

Name:                   concurrent-dns-cache
Version:                0.1.3
Author:                 Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp>
License:                BSD3
License-File:           LICENSE
Synopsis:               Concurrent DNS cache
Description:            Concurrent DNS cache
Category:               Network
Cabal-Version:          >= 1.10
Build-Type:             Simple

Library
  Default-Language:     Haskell2010
  GHC-Options:          -Wall
  Exposed-Modules:      Network.DNS.Cache
  Other-Modules:        Network.DNS.Cache.Cache
                        Network.DNS.Cache.Sync
                        Network.DNS.Cache.Types
                        Network.DNS.Cache.Utils
                        Network.DNS.Cache.Value
  Build-Depends:        base >= 4 && < 5
                      , array
                      , async
                      , bytestring >= 0.10.4.0
                      , containers
                      , dns >= 3
                      , iproute
                      , lifted-base
                      , monad-control
                      , network
                      , psqueues >= 0.2.3
                      , stm
                      , time
                      , transformers

Executable main
  Main-Is:              main.hs
  Default-Language:     Haskell2010
  GHC-Options:          -Wall -threaded
  Hs-Source-Dirs:       test
  Build-Depends:        base >= 4 && < 5
                      , array
                      , async
                      , bytestring >= 0.10.4.0
                      , concurrent-dns-cache
                      , containers
                      , dns >= 3
                      , iproute
                      , lifted-base
                      , monad-control
                      , network
                      , psqueues
                      , stm
                      , time
                      , transformers

Test-Suite spec
  Main-Is:              Spec.hs
  Default-Language:     Haskell2010
  Other-modules:        CacheSpec
  Hs-Source-Dirs:       test
  Type:                 exitcode-stdio-1.0
  Build-Depends:        base >= 4 && < 5
                      , async
                      , concurrent-dns-cache
                      , dns >= 3
                      , hspec

Source-Repository head
  Type:                 git
  Location:             https://github.com/kazu-yamamoto/concurrent-dns-cache