-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcoq-algorand.opam
46 lines (42 loc) · 1.35 KB
/
coq-algorand.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
45
46
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
version: "dev"
homepage: "https://github.com/runtimeverification/algorand-verification"
dev-repo: "git+https://github.com/runtimeverification/algorand-verification.git"
bug-reports: "https://github.com/runtimeverification/algorand-verification/issues"
license: "NCSA"
synopsis: "A verified model of the Algorand consensus protocol in Coq"
description: """
The Algorand consensus protocol is the foundation of a decentralized
digital currency and transactions platform. This project provides a
model of the protocol in Coq, expressed as a transition system over
global states in a message-passing distributed system. Included is
a formal proof of safety for the transition system."""
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"dune" {>= "2.5"}
"coq" {>= "8.14"}
"coq-mathcomp-ssreflect" {>= "1.14"}
"coq-mathcomp-algebra"
"coq-mathcomp-finmap" {>= "1.5.1"}
"coq-mathcomp-analysis" {>= "0.5.0"}
"coq-mathcomp-zify"
"coq-record-update"
]
tags: [
"category:Computer Science/Concurrent Systems and Protocols/Theory of concurrent systems"
"keyword:distributed algorithms"
"keyword:blockchain"
"keyword:consensus"
"keyword:algorand"
"logpath:Algorand"
]
authors: [
"Musab A. Alturki"
"Jing Chen"
"Victor Luchangco"
"Brandon Moore"
"Karl Palmskog"
"Lucas Peña"
"Grigore Roșu"
]