Skip to content

Commit

Permalink
Fix wrong dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
komamitsu committed Aug 18, 2023
1 parent 610a3a2 commit 9c952de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,16 @@
(depends
(ocaml (>= 4.14.0))
dune
(core (>= v0.9.0))
(core_unix (>= v0.9.0))
(core (>= v0.16.0))
(core_unix (>= v0.16.0))
(cohttp-lwt-unix (>= 5.0.0))
sqlite3
(sqlite3 (>= 5.0.0))
yojson
lwt_ppx
ppx_deriving
(ppx_deriving_yojson (>= 3.6.0))
(ounit :with-test)
(fileutils :with-test)
)
(tags (Raft Lwt)))
(tags (Raft lwt)))

; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
8 changes: 4 additions & 4 deletions oraft.opam
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ description: "Raft consensus algorithm implemented in OCaml"
maintainer: ["[email protected]"]
authors: ["Mitsunori Komatsu"]
license: "Apache-2.0"
tags: ["Raft" "Lwt"]
tags: ["Raft" "lwt"]
homepage: "https://github.com/komamitsu/oraft"
doc: "https://github.com/komamitsu/oraft"
bug-reports: "https://github.com/komamitsu/oraft/issues"
depends: [
"ocaml" {>= "4.14.0"}
"dune" {>= "3.6"}
"core" {>= "v0.9.0"}
"core_unix" {>= "v0.9.0"}
"core" {>= "v0.16.0"}
"core_unix" {>= "v0.16.0"}
"cohttp-lwt-unix" {>= "5.0.0"}
"sqlite3"
"sqlite3" {>= "5.0.0"}
"yojson"
"lwt_ppx"
"ppx_deriving"
Expand Down

0 comments on commit 9c952de

Please sign in to comment.