diff --git a/calculon-web.opam b/calculon-web.opam index 7b4deca..c99f226 100644 --- a/calculon-web.opam +++ b/calculon-web.opam @@ -7,7 +7,7 @@ authors: ["Armael" "Enjolras" "c-cube"] maintainer: "c-cube" build: [ ["dune" "build" "-p" name "-j" jobs] - ["dune" "build" "@doc" "-p" name ] {with-doc} + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ diff --git a/calculon.opam b/calculon.opam index 0701be6..6919646 100644 --- a/calculon.opam +++ b/calculon.opam @@ -7,7 +7,7 @@ authors: ["Armael" "Enjolras" "c-cube"] maintainer: "c-cube" build: [ ["dune" "build" "-p" name "-j" jobs] - ["dune" "build" "@doc" "-p" name] {with-doc} + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ @@ -17,10 +17,10 @@ depends: [ "irc-client" { >= "0.7.0"} "irc-client-lwt" "irc-client-lwt-ssl" - "sqlite3" + "sqlite3" { >= "5.0.0" } "logs" {>= "0.5.0"} "yojson" { >= "1.7" } - "containers" { >= "3.0" & < "4.0" } + "containers" { >= "3.6" & < "4.0" } "ptime" "stringext" "re" { >= "1.7.2" & < "2.0" } @@ -30,6 +30,9 @@ depends: [ depopts: [ "iter" ] +conflicts: [ + "result" { < "1.5" } +] tags: [ "irc" "bot" "factoids" ] homepage: "https://github.com/c-cube/calculon" bug-reports: "https://github.com/c-cube/calculon/issues"