]> www.average.org Git - pdns-pipe-nmc.git/blob - pdns-pipe-nmc.cabal
7b0c66cacd8abf53954fd29dabd0523eca4202b4
[pdns-pipe-nmc.git] / pdns-pipe-nmc.cabal
1 name:                pdns-pipe-nmc
2 version:             0.9.0.0
3 synopsis:            Namecoin pipe backend for PowerDNS
4 description:         Realtime bridge between Namecoin "d/" namespace
5                      (http://namecoin.info/) and DNS implemented as
6                      a pipe backend coprocess for PowerDns
7                      (http://www.powerdns.com/).
8 homepage:            http://www.average.org/pdns-pipe-nmc/
9 license:             OtherLicense
10 license-file:        LICENSE
11 author:              Eugene Crosser
12 maintainer:          crosser@average.org
13 copyright:           2014, Eugene Crosser
14 category:            Database
15 build-type:          Simple
16 extra-source-files:  README.md
17 cabal-version:       >=1.10
18
19 executable pdns-pipe-nmc
20   main-is:             pdns-pipe-nmc.hs
21   other-modules:       Config
22                      , JsonRpcClient
23                      , NmcDom
24                      , NmcRpc
25                      , NmcTransform
26                      , PowerDns
27   other-extensions:    OverloadedStrings
28   build-depends:       base >=4.6 && <4.7
29                      , bytestring >=0.10 && <0.11
30                      , text >=0.11 && <0.12
31                      , split >=0.2 && <0.3
32                      , containers >=0.5 && <0.6
33                      , aeson >=0.6 && <0.7
34                      , ConfigFile >=1.1 && <1.2
35                      , MissingH >=1.2 && <1.3
36                      , vector >=0.10 && <0.11
37                      , unordered-containers >=0.2 && <0.3
38                      , data-default-class >=0.0.1 && <1.0
39                      , http-client >=0.3 && <1.0
40                      , http-types >=0.8 && <1.0
41                      , mtl >=2.0 && <3.0
42                      , pretty-show >=1.2 && <2.0
43                      , time >=1.4 && <2.0
44   -- hs-source-dirs:      
45   default-language:    Haskell98