forked from kazu-yamamoto/iproute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iproute.cabal
63 lines (59 loc) · 2.19 KB
/
iproute.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
Name: iproute
Version: 1.7.2
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
License: BSD3
License-File: LICENSE
Homepage: http://www.mew.org/~kazu/proj/iproute/
Synopsis: IP Routing Table
Description: IP Routing Table is a tree of IP ranges
to search one of them on the longest
match base. It is a kind of TRIE with one
way branching removed. Both IPv4 and IPv6
are supported.
Category: Algorithms, Network
Cabal-Version: >= 1.10
Build-Type: Simple
Library
Default-Language: Haskell2010
GHC-Options: -Wall
Exposed-Modules: Data.IP
Data.IP.Internal
Data.IP.RouteTable
Other-Modules: Data.IP.Addr
Data.IP.Mask
Data.IP.Op
Data.IP.Range
Data.IP.RouteTable.Internal
Build-Depends: base >= 4.6 && < 5
, appar
, byteorder
, containers
, network
Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base >= 4.6 && < 5
, doctest >= 0.9.3
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: ., test
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: RouteTableSpec
, IPSpec
Build-Depends: base >= 4.6 && < 5
, hspec
, QuickCheck
, appar
, byteorder
, containers
, network
, safe
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/iproute.git