-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhttp.ipkg
51 lines (46 loc) · 1.38 KB
/
http.ipkg
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
package http
version = 0.0.1
authors = "octeep"
readme = "README.md"
license = "ISC (refer to LICENSE file)"
brief = "A http client implementation in idris2"
depends = base >= 0.5.1
, base64
, contrib >= 0.5.1
, network >= 0.5.1
, sop >= 0.5.0
, elab-util >= 0.5.0
, tls >= 0.0.1
modules = Data.Compress.CRC,
Data.Compress.GZip,
Data.Compress.Inflate,
Data.Compress.Huffman,
Data.Compress.Utils.Misc,
Data.Compress.Utils.Bytes,
Data.Compress.Utils.ConstantTable,
Data.Compress.Utils.FiniteBuffer,
Data.Compress.Utils.Parser,
Data.Compress.Interface,
Data.Compress.ZLib,
Network.HTTP.Authorization,
Network.HTTP.Header,
Network.HTTP.Status,
Network.HTTP.Method,
Network.HTTP.Message,
Network.HTTP.Client,
Network.HTTP.URL,
Network.HTTP.Error,
Network.HTTP.Cookie,
Network.HTTP.Scheduler,
Network.HTTP.Path,
Network.HTTP.Pool.Common,
Network.HTTP.Pool.ConnectionPool,
Network.HTTP.Pool.Worker,
Network.HTTP.Pool.IOStuff,
Network.HTTP.Protocol,
Network.HTTP,
Utils.Streaming,
Utils.String,
Utils.Queue
opts = "-Wno-shadowing"
sourcedir = "src"