-
Notifications
You must be signed in to change notification settings - Fork 2
/
seqid-streams.cabal
45 lines (40 loc) · 1.19 KB
/
seqid-streams.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
name: seqid-streams
version: 0.8.0
synopsis: Sequence ID IO-Streams
description: Uniquely identify elements in a sequenced stream
License: BSD3
License-file: LICENSE
author: Luke Hoersten
maintainer: [email protected]
copyright: Bitnomial, Inc. (c) 2016
category: IO-Streams
build-type: Simple
cabal-version: >= 1.10
homepage: https://github.com/bitnomial/seqid-streams
bug-reports: https://github.com/bitnomial/seqid-streams/issues
source-repository head
type: git
location: git://github.com/bitnomial/seqid-streams.git
library
exposed-modules: System.IO.Streams.SequenceId
build-depends: base >= 4.7 && < 5
, io-streams >= 1.2 && < 1.6
, seqid >= 0.6 && < 0.7
hs-source-dirs: src/lib
default-language: Haskell2010
test-suite test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
src/test
main-is:
test.hs
build-depends:
base >= 4 && < 5
, io-streams >= 1.2 && < 1.6
, tasty >= 1.2.2
, tasty-hunit >= 0.10.0.3
, seqid
, seqid-streams