-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconcurrent-dns-cache.cabal
72 lines (68 loc) · 2.4 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
72
Name: concurrent-dns-cache
Version: 0.1.3
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
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.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 >= 3
, iproute
, lifted-base
, monad-control
, network
, psqueues >= 0.2.3
, stm
, time
, transformers
Executable main
Main-Is: main.hs
Default-Language: Haskell2010
GHC-Options: -Wall -threaded
Hs-Source-Dirs: test
Build-Depends: base >= 4 && < 5
, array
, async
, bytestring >= 0.10.4.0
, concurrent-dns-cache
, containers
, dns >= 3
, iproute
, lifted-base
, monad-control
, network
, psqueues
, 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 >= 3
, hspec
Source-Repository head
Type: git
Location: https://github.com/kazu-yamamoto/concurrent-dns-cache