-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathuri-encode.cabal
More file actions
98 lines (90 loc) · 2.4 KB
/
uri-encode.cabal
File metadata and controls
98 lines (90 loc) · 2.4 KB
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
cabal-version: 1.18
name: uri-encode
version: 1.5.0.7
x-revision: 3
synopsis: Unicode aware uri-encoding
description: This package allows you to uri encode and uri decode
Strings, Texts and ByteString values.
category: Network, Web
author: Silk
maintainer: code@silk.co
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 9.8.1
GHC == 9.6.3
GHC == 9.4.7
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
GHC == 7.10.3
extra-doc-files:
CHANGELOG.md
LICENSE
README.md
flag tools
description: Build executables
default: False
manual: True
flag network-uri
description: Get Network.URI from the network-uri package
default: True
source-repository head
type: git
location: https://github.com/silkapp/uri-encode.git
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Network.URI.Encode
build-depends:
base == 4.*
, bytestring >= 0.9 && < 0.13
, text >= 0.7 && < 2.2
, utf8-string >= 0.3 && < 1.1
if flag(network-uri)
build-depends: network-uri >= 2.6
else
build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
default-language: Haskell2010
executable uri-encode
main-is: URIEncode.hs
ghc-options: -Wall
hs-source-dirs: src
if flag(tools)
buildable: True
build-depends:
base == 4.*
, bytestring >= 0.9 && < 0.13
, text >= 0.7 && < 2.2
, utf8-string >= 0.3 && < 1.1
if flag(network-uri)
build-depends: network-uri >= 2.6
else
build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
else
buildable: False
default-language: Haskell2010
executable uri-decode
main-is: URIDecode.hs
ghc-options: -Wall
hs-source-dirs: src
if flag(tools)
buildable: True
build-depends:
base == 4.*
, bytestring >= 0.9 && < 0.13
, text >= 0.7 && < 2.2
, utf8-string >= 0.3 && < 1.1
if flag(network-uri)
build-depends: network-uri >= 2.6
else
build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
else
buildable: False
default-language: Haskell2010