-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsirkel.cabal
55 lines (52 loc) · 1.97 KB
/
sirkel.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
Name: sirkel
Version: 0.2
Cabal-Version: >=1.8
Description: An implementation of the Chord DHT with replication and faulth tolerance
synopsis: Sirkel, a Chord DHT
Category: Distributed Computing,Concurrency,Concurrent,Data Structures,Database
License: BSD3
License-file: LICENSE
Extra-Source-Files: README.md
Author: Morten Olsen Lysgaard <[email protected]>
Maintainer: Morten Olsen Lysgaard <[email protected]> , Rob Stewart <[email protected]>
Stability: Experimental
Build-Type: Simple
tested-with: GHC == 7.6.1
library
Build-Depends: base >= 4.6.0.0 && < 5,
binary >= 0.6.4.0 && < 0.8,
bytestring,
containers,
distributed-process,
distributed-process-p2p,
hashtables,
network-transport,
random,
SHA,
transformers
ghc-options: -Wall
Extensions: DeriveDataTypeable,
ScopedTypeVariables,
TemplateHaskell
Exposed-Modules: Control.Distributed.Process.DHT.Chord,
Control.Distributed.Process.DHT.DHash
hs-source-dirs: src
Executable TestClient
Main-is: TestClient.hs
Build-Depends: base >= 4.6.0.0 && < 5,
binary >= 0.6.4.0 && < 0.8,
bytestring,
cmdargs,
containers,
distributed-process,
distributed-process-p2p,
hashtables,
network-transport-tcp,
random,
SHA,
sirkel,
transformers
hs-source-dirs: examples
source-repository head
type: git
location: git://github.com/molysgaard/Sirkel.git