summaryrefslogtreecommitdiffhomepage
path: root/dns.cabal
blob: 04dba3f4fe0123cb23274cb7cd9ddfec95c662a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
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
  Other-Modules:        Network.DNS.Types
                        Network.DNS.Query
                        Network.DNS.Response
                        Network.DNS.StateBinary
  Build-Depends:        base >= 4.0 && < 10, binary, iproute, bytestring,
                        containers, mtl