-
Notifications
You must be signed in to change notification settings - Fork 8
/
pipes-network.cabal
52 lines (50 loc) · 1.73 KB
/
pipes-network.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
name: pipes-network
version: 0.6.5
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2012-2018, Paolo Capriotti 2012-2012.
author: Renzo Carbonara
maintainer: renzocarbonaraλgmail.com
stability: Experimental
tested-with: GHC == 8.4.1
homepage: https://github.com/k0001/pipes-network
bug-reports: https://github.com/k0001/pipes-network/issues
category: Pipes, Network
build-type: Simple
synopsis: Use network sockets together with the pipes library.
cabal-version: >=1.8
extra-source-files: README.md PEOPLE changelog.md
description:
Use network sockets together with the @pipes@ library.
.
This package is organized using the following namespaces:
.
* "Pipes.Network.TCP" exports pipes and utilities for using TCP connections in
a streaming fashion.
.
* "Pipes.Network.TCP.Safe" subsumes "Pipes.Network.TCP", exporting pipes and
functions that allow you to safely establish new TCP connections within a
pipeline using the @pipes-safe@ facilities. You only need to use this module
if you want to safely acquire and release operating system resources within a
pipeline.
.
See the @changelog@ file in the source distribution to learn about any
important changes between version.
source-repository head
type: git
location: https://github.com/k0001/pipes-network
library
hs-source-dirs: src
build-depends:
base ==4.*,
bytestring,
exceptions,
network,
network-simple,
pipes,
pipes-safe,
transformers
exposed-modules:
Pipes.Network.TCP
Pipes.Network.TCP.Safe
ghc-options: -Wall -O2