-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIPv6Addr.cabal
57 lines (52 loc) · 1.7 KB
/
IPv6Addr.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
name: IPv6Addr
version: 2.0.6.1
synopsis: Library to deal with IPv6 address text representations.
description: Library to deal with IPv6 address text representations, canonization and manipulations.
homepage: https://github.com/MichelBoucey/IPv6Addr
license: BSD3
license-file: LICENSE
author: Michel Boucey
maintainer: [email protected]
copyright: (c) 2011-2025 - Michel Boucey
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
Tested-With:
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.3
|| ==9.8.2
|| ==9.10.1
|| ==9.12.1
Source-Repository head
Type: git
Location: https://github.com/MichelBoucey/IPv6Addr.git
library
hs-source-dirs: src/
exposed-modules: Text.IPv6Addr
other-extensions: OverloadedStrings
build-depends: base >=4.8 && < 5
, text >=1.1 && < 2.2
, iproute >=1.3 && < 1.8
, network >=2.5 && < 4
, random >=1.0 && < 1.4
, attoparsec >=0.12 && < 0.15
, aeson >=0.8.0.2 && < 1.6 || >= 2.0 && < 2.4
, network-info >=0.2 && <=0.3
default-language: Haskell2010
GHC-Options: -Wall
Test-Suite tests
Type: exitcode-stdio-1.0
default-language: Haskell2010
HS-Source-Dirs: tests
Main-Is: Main.hs
Build-Depends: base,
HUnit,
IPv6Addr,
test-framework,
test-framework-hunit,
text