-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwire-streams.cabal
More file actions
66 lines (58 loc) · 1.99 KB
/
wire-streams.cabal
File metadata and controls
66 lines (58 loc) · 1.99 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
name: wire-streams
version: 0.1.1.0
synopsis: Fast binary io-streams adapter.
description: Fast binary io-streams adapter.
license: BSD3
license-file: LICENSE
author: Winterland
maintainer: winterland1989@gmail.com
copyright: Winterland
category: Data, Parsing, IO-Streams
build-type: Simple
extra-source-files: README.md, CHANGELOG
cabal-version: >=1.10
homepage: https://github.com/winterland1989/wire-streams
source-repository head
type: git
location: git://github.com/winterland1989/wire-streams.git
library
exposed-modules: System.IO.Streams.Binary
build-depends: base == 4.*
, binary == 0.8.*
, bytestring == 0.10.*
, binary-parsers >= 0.2.1
, io-streams >= 1.2
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base
, bytestring
, binary
, io-streams
, wire-streams
, QuickCheck >= 2.7
, tasty >= 0.11
, tasty-quickcheck >= 0.8
hs-source-dirs: test
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: System.IO.Streams.Cereal
hs-source-dirs: bench
default-language: Haskell2010
build-depends: base
, wire-streams
, criterion >= 1.0.2.0
, io-streams
, bytestring
, cereal
, binary
, cereal-conduit
, conduit
, conduit-extra
, transformers
ghc-options: -rtsopts -Wall