-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreaming.ipkg
44 lines (32 loc) · 901 Bytes
/
streaming.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
package streaming
authors = "MarcelineVQ"
version = "0.7.4.1"
readme = "README.md"
homepage = "https://github.com/MarcelineVQ/idris2-streaming"
sourceloc = "https://github.com/MarcelineVQ/idris2-streaming.git"
bugtracker = "https://github.com/MarcelineVQ/idris2-streaming/issues"
license = "CC0 (refer to LICENSE file)"
brief = "Effectful Streaming for Idris"
modules =
-- Public
Streaming
, Streaming.Streams
, Streaming.Bytes
, Streaming.Char
, Streaming.Encoding.UTF8
, Streaming.Encoding.Base64
, Streaming.Encoding.Base64.Alphabet
, Streaming.Network.Curl
, Data.Functor.Of
, Data.Functor.Compose
, Data.AVL
, Data.Proxy
, Data.LazyList
-- Internal
, Streaming.API
, Streaming.Internal
, Util -- Don't expect this one to always exist.
sourcedir = "src"
main = Streaming
depends = base, contrib, network
, managed, curl