-
Notifications
You must be signed in to change notification settings - Fork 1
/
urps.opam
29 lines (29 loc) · 920 Bytes
/
urps.opam
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
opam-version: "2.0"
name: "urps"
synopsis: "URPS: Uniform Random Peer Sampler"
description: """
URPS processes on the fly an unbounded and arbitrarily biased input stream
made of node identifiers exchanged within the system,
and outputs a stream that preserves Uniformity and Freshness properties.
"""
maintainer: "TG x Thoth <*@tg-x.net>"
authors: ["TG x Thoth <*@tg-x.net>"]
tags: [ "p2p" "protocol" "gossip" "uniform" "random" "peer sampling" "stream sampler" ]
license: "AGPL-3.0-only"
homepage: "https://github.com/p2pcollab/ocaml-urps"
doc: "https://p2pcollab.net/doc/ocaml/urps/"
dev-repo: "git+https://github.com/p2pcollab/ocaml-urps.git"
bug-reports: "https://github.com/p2pcollab/ocaml-urps/issues"
depends:
[
"dune" {build & >= "1.0.0"}
"ounit" {with-test}
"nocrypto"
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]