-
Notifications
You must be signed in to change notification settings - Fork 1
/
pocket-dns.cabal
101 lines (93 loc) · 3.31 KB
/
pocket-dns.cabal
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
-- Initial pocket-dns.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: pocket-dns
version: 0.1.1
synopsis: Multi-backend (zookeeper and sqlite) DNS Server using persistent-library
description: Multi-backend (zookeeper and sqlite) DNS Server using persistent-library
license: BSD3
license-file: LICENSE
author: Junji Hashimoto
maintainer: [email protected]
-- copyright:
stability: Experimental
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
bug-reports: https://github.com/junjihashimoto/pocket-dns/issues
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/junjihashimoto/pocket-dns.git
library
exposed-modules: Network.DNS.Pocket
, Network.DNS.Pocket.Type
, Network.DNS.Pocket.Server
, Network.DNS.Pocket.Sqlite
, Network.DNS.Pocket.Zookeeper
-- other-modules:
-- other-extensions:
build-depends: base >=4 && <5
,dns
,network
,persistent-zookeeper >= 0.2 && < 0.3
,persistent-sqlite >= 2.1 && < 3
,persistent-template >= 2.1 && < 3
,persistent >= 2.1 && < 3
,optparse-applicative
,bytestring
,yaml
,iproute
,data-default
,text
,monad-control
,transformers
,aeson
,unordered-containers
-- hs-source-dirs:
ghc-options: -Wall -O2
default-language: Haskell2010
executable pocket-dns
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4 && <5
,dns
,network
,persistent-zookeeper
,persistent-sqlite
,persistent-template
,persistent
,optparse-applicative
,text
,shelly
,http-conduit
,bytestring
,data-default
,iproute
,yaml
,monad-control
,unordered-containers
,aeson
-- hs-source-dirs:
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: tests,dist/build/autogen
ghc-options: -Wall
build-depends: base
, pocket-dns
, transformers
, hspec
, hspec-contrib
, hspec-server
, test-sandbox
, hspec-test-sandbox
, cabal-test-bin
, shakespeare
, text
Default-Language: Haskell2010