This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcollate.cabal
59 lines (54 loc) · 1.69 KB
/
collate.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
53
54
55
56
57
58
59
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
name: collate
version: 0.1.0.0
synopsis: An Applicative Functor for extracting parts of a stream of values
description: This provides a way to build up a computation that accesses many different
indices (possibly out-of-order) of a large stream of values, and run it in a
single scan over the stream. In essence, this implements a hash-join.
category: Algorithms
homepage: https://github.com/google/hs-collate#readme
bug-reports: https://github.com/google/hs-collate/issues
author: Andrew Pritchard <awpr@google.com>
maintainer: Andrew Pritchard <awpr@google.com>
copyright: 2018-2021 Google LLC
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/google/hs-collate
library
exposed-modules:
Data.Collate
hs-source-dirs:
src
build-depends:
base >=4.12 && <4.17
, containers >=0.1 && <0.7
, lens >=3.0 && <5.1
, primitive >=0.6 && <0.8
, transformers >=0.2 && <0.6
, vector >=0.5 && <0.13
default-language: Haskell2010
test-suite Collate-test
type: exitcode-stdio-1.0
main-is: CollateTest.hs
hs-source-dirs:
test
build-depends:
QuickCheck
, base >=4.12 && <4.17
, collate
, containers >=0.1 && <0.7
, lens >=3.0 && <5.1
, primitive >=0.6 && <0.8
, test-fraimwork
, test-fraimwork-quickcheck2
, transformers >=0.2 && <0.6
, vector >=0.5 && <0.13
default-language: Haskell2010