-
Notifications
You must be signed in to change notification settings - Fork 0
/
wreq-stringless.cabal
77 lines (73 loc) · 2.51 KB
/
wreq-stringless.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
73
74
75
76
77
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: fcf20524e73874685671c1cfbdb5b7d7e5f9ae8714e36065e8262dfa4694353e
name: wreq-stringless
version: 0.5.9.1
synopsis: Simple wrapper to use wreq without Strings
description: This library wraps all functions from @Network.Wreq@ which expects a 'String'
and replaces the 'String' Type with the "Network.Wreq.StringLess.StringLike" Type-Class.
.
Instances for "Network.Wreq.StringLess.StringLike" are given for:
.
* "Data.Text"
.
* "Data.Text.Lazy"
.
* "Data.ByteString.UTF8"
.
* "Data.ByteString.Lazy.UTF8"
.
So you can use any of this types instead of 'String'.
.
To use this library, replace your the @wreq@ dependency from your @cabal@
file with @wreq-stringless@ and import "Network.Wreq.StringLess" instead
of @Network.Wreq@.
.
The '0.5.9.x' version of this library wraps the '0.5.x.x' version of @wreq@.
.
see <https://github.com/j-keck/wreq-stringless/tree/master/examples> for examples.
category: Web
homepage: https://github.com/j-keck/wreq-stringless#readme
bug-reports: https://github.com/j-keck/wreq-stringless/issues
author: Juergen Keck
maintainer: Juergen Keck <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
examples/DirectComparison.hs
examples/package.yaml
examples/stack.yaml
examples/WithByteString.hs
examples/WithText.hs
examples/wreq-stringless-examples.cabal
package.yaml
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/j-keck/wreq-stringless
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, bytestring
, text
, utf8-string
, wreq ==0.5.*
exposed-modules:
Network.Wreq.StringLess
Network.Wreq.StringLess.Cache
Network.Wreq.StringLess.Cache.Store
Network.Wreq.StringLess.Lens
Network.Wreq.StringLess.Session
Network.Wreq.StringLess.StringLike
Network.Wreq.StringLess.Types
other-modules:
Paths_wreq_stringless
default-language: Haskell2010