-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcpr.opam
43 lines (43 loc) · 1018 Bytes
/
cpr.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Simulating various DAG-based proof-of-work consensus protocols"
maintainer: ["[email protected]"]
authors: ["Patrik Keller"]
license: "none"
homepage: "https://github.com/pkel/cpr"
bug-reports: "https://github.com/pkel/cpr/issues"
depends: [
"dune" {>= "2.8"}
"angstrom" {>= "0.15.0"}
"bos" {>= "0.2.1"}
"cmdliner" {>= "1.1.1"}
"ezxmlm" {>= "1.1.0"}
"mtime" {>= "1.4" & < "2"}
"ocaml" {>= "4.12"}
"parany" {>= "12.2"}
"ppx_expect" {>= "v0.15"}
"ppx_fields_conv" {>= "v0.15"}
"ppx_let" {>= "v0.15"}
"ppx_sexp_conv" {>= "v0.15"}
"ppx_show" {>= "0.2.1"}
"ppx_variants_conv" {>= "v0.15"}
"progress" {>= "0.2.1"}
"pyml" {>= "20220325"}
"pythonlib" {>= "v0.15"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+ssh://[email protected]:pkel/cpr.git"