-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrawr.cabal
More file actions
43 lines (40 loc) · 1.15 KB
/
rawr.cabal
File metadata and controls
43 lines (40 loc) · 1.15 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
name: rawr
version: 0.1.0.0
synopsis: Roaring Bitmaps compressed bitmap data-structure.
description: Roaring Bitmaps compressed bitmap data-structure.
homepage: https://github.com/thsutton/rawr/
license: BSD3
license-file: LICENSE
author: Thomas Sutton
maintainer: me@thomas-sutton.id.au
-- copyright:
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository HEAD
type: git
location: https://github.com/thsutton/rawr.git
library
default-language: Haskell2010
hs-source-dirs: lib
exposed-modules:
Data.BitMap.Roaring
Data.BitMap.Roaring.Chunk
Data.BitMap.Roaring.Utility
build-depends:
base >=4.7 && <4.8
, convertible
, containers
, vector
, vector-algorithms
test-suite properties
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: properties.hs
build-depends:
base
, QuickCheck
, containers
, rawr