-
Notifications
You must be signed in to change notification settings - Fork 3
/
hashring.cabal
46 lines (42 loc) · 1.11 KB
/
hashring.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
name: hashring
version: 0.0.0
license: BSD3
license-file: LICENSE.md
author: Michael S. Craig <[email protected]>
maintainer: Michael S. Craig <[email protected]>
stability: experimental
synopsis: Efficient consistent hashing.
description:
An efficient implementation of consistent hashing. See the documentation for
@Data.HashRing@ for more info.
homepage: https://github.com/mkscrg/hashring
bug-reports: https://github.com/mkscrg/hashring/issues
category: Data
build-type: Simple
cabal-version: >= 1.9.2
extra-source-files: README.md
library
exposed-modules: Data.HashRing
ghc-options: -Wall -O2
build-depends:
base >= 4 && < 5,
containers >= 0.4 && < 0.5,
hashable >= 1.1.1 && < 1.2
test-suite tests
type: exitcode-stdio-1.0
main-is: Properties.hs
hs-source-dirs: tests
ghc-options: -Wall -O2 -fno-warn-orphans
build-depends:
base >= 4 && < 5,
hashring,
test-framework,
test-framework-quickcheck2,
QuickCheck
source-repository head
type: git
location: git://github.com/mkscrg/hashring
source-repository this
type: git
location: git://github.com/mkscrg/hashring
tag: 0.0.0