summaryrefslogtreecommitdiffhomepage
path: root/dns.cabal
blob: 934366234cf9a371f8322c33537369653e28145d (plain)
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
28
29
30
31
Name:                   dns
Version:                0.1.0
Author:                 Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp>
License:                BSD3
License-File:           LICENSE
Synopsis:               DNS libary in Haskell
Description:            DNS libary. Currently only resolver side
                        is supported. That is, this library includes
                        a composer of DNS query and a parser of DNS
                        response.
Category:               Network
Cabal-Version:          >= 1.6
Build-Type:             Simple
library
  GHC-Options:          -Wall
  Exposed-Modules:      Network.DNS
                        Network.DNS.Lookup
                        Network.DNS.Resolver
                        Network.DNS.Types
  Other-Modules:        Network.DNS.Internal
                        Network.DNS.StateBinary
                        Network.DNS.Query
                        Network.DNS.Response
  Build-Depends:        base >= 4.0 && < 10, haskell98,
                        binary, iproute,
                        containers, mtl, bytestring,
                        network, network-bytestring
Source-Repository head
  Type:                 git
  Location:             git://github.com/kazu-yamamoto/dns.git