This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvector-clock.cabal
58 lines (53 loc) · 1.96 KB
/
vector-clock.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
Name: vector-clock
Version: 0.2.2
Cabal-Version: >= 1.8
License: GPL-3
License-File: LICENSE
Stability: experimental
Author: Alexandru Scvortov <[email protected]>
Maintainer: [email protected]
Homepage: https://github.com/scvalex/vector-clock
Category: Data, Data Structures, Distributed Computing
Synopsis: Vector clocks for versioning message flows
Build-Type: Simple
Description:
This package provides a ready to use implementation of the
vector clock data-structures, which may be used to version
messages and determine causality relations between them in
a distributed system.
.
See @Fundamentals of Distributed Computing: A Practical Tour
of Vector Clock Systems@ by R. Baldoni and M. Raynal for an
overview of vector clocks.
.
See the README.md file for details.
Extra-Source-Files: Makefile
Data-Files: README.md, NEWS.md, LICENSE
Source-repository head
Type: git
Location: git://github.com/scvalex/vector-clock.git
Library
Hs-Source-Dirs: src
Build-Depends: base >= 4 && <5,
binary,
ghc-prim,
hashable
Ghc-Options: -Wall
Exposed-Modules: Data.VectorClock,
Data.VectorClock.Approximate,
Data.VectorClock.Simple
Test-suite props
Hs-Source-Dirs: test
Main-Is: Props.hs
Type: exitcode-stdio-1.0
Ghc-Options: -Wall
Build-Depends: array,
base >= 4 && <5,
binary,
ghc-prim,
HUnit,
QuickCheck,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
vector-clock