this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Raft consensus algorithm implemented in OCaml" 4description: "Raft consensus algorithm implemented in OCaml" 5maintainer: ["komamitsu@gmail.com"] 6authors: ["Mitsunori Komatsu"] 7license: "Apache-2.0" 8tags: ["Raft" "lwt"] 9homepage: "https://github.com/komamitsu/oraft" 10doc: "https://github.com/komamitsu/oraft" 11bug-reports: "https://github.com/komamitsu/oraft/issues" 12depends: [ 13 "ocaml" {>= "4.14.0"} 14 "dune" {>= "3.6"} 15 "core" {>= "v0.16.0"} 16 "core_unix" {>= "v0.16.0"} 17 "cohttp-lwt-unix" {>= "5.0.0"} 18 "sqlite3" {>= "5.0.0"} 19 "yojson" 20 "lwt_ppx" 21 "ppx_deriving" 22 "ppx_deriving_yojson" {>= "3.6.0"} 23 "ounit" {with-test} 24 "fileutils" {with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/komamitsu/oraft.git" 42url { 43 src: "https://github.com/komamitsu/oraft/archive/refs/tags/0.3.0.tar.gz" 44 checksum: [ 45 "md5=30d9c899940ca6b46297e59b13eaa3bf" 46 "sha512=27b6e893dbc72dc54058f49deeb50e2df784d292918485ce360457f8eb9b9c7c2c90f781e5f725a70b47664a1e039106c374c9429e6c773e70780d46b776a386" 47 ] 48}