-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmurmur-hash.cabal
49 lines (44 loc) · 1.1 KB
/
murmur-hash.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
Cabal-Version: 1.18
Name: murmur-hash
Version: 0.1.0.11
License: BSD3
License-File: LICENSE
Author: Thomas Schilling
Maintainer: Andreas Abel
Homepage: https://github.com/nominolo/murmur-hash
Synopsis: MurmurHash2 implementation for Haskell.
Description:
Implements MurmurHash2, a good, fast, general-purpose,
non-cryptographic hashing function.
.
This implementation is pure Haskell, so it might be a bit slower
than a C FFI binding.
Category: Data, Digest
Stability: provisional
Build-Type: Simple
Extra-Doc-Files: changelog.md
tested-with:
GHC == 9.12.0
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.6
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
Library
Default-Language: Haskell2010
Build-Depends:
base >= 4.7 && < 5,
bytestring >= 0.9 && < 0.13
exposed-modules:
Data.Digest.Murmur32
Data.Digest.Murmur64
Source-repository head
Type: git
Location: https://github.com/nominolo/murmur-hash.git