-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathxxhash.cabal
57 lines (53 loc) · 1.76 KB
/
xxhash.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
name: xxhash
version: 0.0.2
license: BSD3
license-file: LICENSE
author: Christian Marie <christian@ponies.io>
maintainer: Christian Marie
description: A Haskell implementation of the xxHash algorithm, for fast
non-cryptographic checksums of ByteStrings.
synopsis: A Haskell implementation of the xxHash algorithm
category: Data, Cryptography
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
src/cbits/xxhash.c, src/cbits/xxhash.h
source-repository head
type: git
location: https://github.com/christian-marie/xxhash/
library
build-depends: base >=4.6 && <5,
bytestring,
tagged,
crypto-api
ghc-options:
c-sources: src/cbits/xxhash.c
include-dirs: src/cbits
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Data.Digest.XXHash
other-modules: Data.Digest.CXXHash
test-suite check
type: exitcode-stdio-1.0
build-depends: base >=4.6 && <5,
bytestring,
hspec,
QuickCheck,
xxhash
hs-source-dirs: tests
main-is: check.hs
other-modules: TestSuite
default-language: Haskell2010
benchmark bench
hs-source-dirs: bench
main-is: Bench.hs
type: exitcode-stdio-1.0
build-depends: base >=4.6 && <5,
bytestring,
criterion,
digest,
deepseq,
hashable,
xxhash
ghc-options: -rtsopts
default-language: Haskell2010