forked from kazu-yamamoto/concurrent-dns-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcurrent-dns-cache.cabal
71 lines (67 loc) · 2.35 KB
/
concurrent-dns-cache.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
Name: concurrent-dns-cache
Version: 0.1.0
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.PSQ
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
, hashable
, iproute
, lifted-base
, monad-control
, network
, stm
, time
, transformers
Executable main
Main-Is: main.hs
Default-Language: Haskell2010
GHC-Options: -Wall -threaded
Build-Depends: base >= 4 && < 5
, array
, async
, bytestring >= 0.10.4.0
, containers
, dns
, hashable
, iproute
, lifted-base
, monad-control
, network
, 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
, hspec
Source-Repository head
Type: git
Location: https://github.com/kazu-yamamoto/concurrent-dns-cache