this repo has no description
1opam-version: "2.0"
2maintainer: "komamitsu@gmail.com"
3authors: ["Mitsunori Komatsu"]
4homepage: "https://github.com/komamitsu/oraft"
5bug-reports: "https://github.com/komamitsu/oraft/issues"
6dev-repo: "git+https://github.com/komamitsu/oraft.git"
7description: "Raft consensus algorithm implemented in OCaml"
8synopsis: "Raft consensus algorithm implemented in OCaml"
9license: "Apache"
10build: [
11 ["dune" "build" "-p" name "-j" jobs]
12 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
13]
14
15depends: [
16 "ocaml" {>= "4.05.0"}
17 "dune" {>= "2.0"}
18 "core" {>= "v0.9.0" & < "v0.15"}
19 "cohttp-lwt-unix"
20 "yojson"
21 "ppx_deriving"
22 "ppx_deriving_yojson"
23 "fileutils" {with-test}
24 "ounit" {with-test}
25]
26url {
27 src: "https://github.com/komamitsu/oraft/archive/0.1.0.tar.gz"
28 checksum: [
29 "md5=6a11af37a44aa267897d17dac2ab56f3"
30 "sha512=d921e2163e8c087c70c0b0f7d376026213691b4e0a75ab219a022200f5bfa8183651303e8dd7df670673c272fb1fe3655078d6ee0e149d71ef84105d608543a8"
31 ]
32}