-
Notifications
You must be signed in to change notification settings - Fork 19
/
coq-verdi-raft.opam
44 lines (40 loc) · 1.23 KB
/
coq-verdi-raft.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
homepage: "https://github.com/uwplse/verdi-raft"
dev-repo: "git+https://github.com/uwplse/verdi-raft.git"
bug-reports: "https://github.com/uwplse/verdi-raft/issues"
license: "BSD-2-Clause"
synopsis: "Verified implementation of the Raft distributed consensus protocol in Coq"
description: """
Raft is a distributed consensus algorithm that is designed to be easy to understand
and is equivalent to Paxos in fault tolerance and performance. Verdi Raft is a
verified implementation of Raft in Coq, constructed using the Verdi framework.
Included is a verified fault-tolerant key-value store using Raft."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.14"}
"coq-verdi" {= "dev"}
"coq-struct-tact" {= "dev"}
"coq-cheerios" {= "dev"}
]
tags: [
"category:Computer Science/Concurrent Systems and Protocols/Theory of concurrent systems"
"keyword:program verification"
"keyword:distributed algorithms"
"keyword:fault tolerance"
"keyword:key-value store"
"keyword:raft"
"logpath:VerdiRaft"
]
authors: [
"Justin Adsuara"
"Steve Anton"
"Ryan Doenges"
"Karl Palmskog"
"Pavel Panchekha"
"Zachary Tatlock"
"James R. Wilcox"
"Doug Woos"
]