diff options
-rw-r--r-- | _oasis | 6 | ||||
-rw-r--r-- | opam | 5 |
2 files changed, 7 insertions, 4 deletions
@@ -29,19 +29,19 @@ Library "client" Modules: Vyconf_client InternalModules: Vyconf_pb, Vyconf_types, Message, Util, Vylist FindlibParent: vyconf - BuildDepends: lwt, lwt.ppx, lwt.log, ocaml-protoc, ocplib-endian, batteries, fileutils, yojson + BuildDepends: lwt, lwt_ppx, lwt_log, ocaml-protoc, ocplib-endian, batteries, fileutils, yojson Executable "vyconfd" Path: src MainIs: vyconfd.ml CompiledObject: best - BuildDepends: lwt, lwt.unix, lwt.ppx, lwt.log, ocaml-protoc, ocplib-endian, sha, batteries, vyconf, vyconf.vyconfd-config + BuildDepends: lwt, lwt.unix, lwt_ppx, lwt_log, ocaml-protoc, ocplib-endian, sha, batteries, vyconf, vyconf.vyconfd-config Executable "vycli" Path: src MainIs: vycli.ml CompiledObject: best - BuildDepends: lwt, lwt.unix, lwt.ppx, ocaml-protoc, ocplib-endian, pcre, vyconf.client + BuildDepends: lwt, lwt.unix, lwt_ppx, ocaml-protoc, ocplib-endian, pcre, vyconf.client Executable "vytree_test" Path: test @@ -6,6 +6,7 @@ authors: "VyOS maintainers and contributors <maintainers@vyos.net>" homepage: "https://github.com/vyos/vyconf" bug-reports: "https://phabricator.vyos.net/maniphest" license: "LGPL with OCaml linking exception" +description: "An appliance configuration framework" dev-repo: "git+https://github.com/vyos/vyconf" build: [ ["./configure" "--prefix=%{prefix}%"] @@ -20,7 +21,9 @@ depends: [ "ocaml-protoc" {build} "ounit" {build} "batteries" {build} - "lwt" {build} + "lwt" {build & >= "4.1.0"} + "lwt_ppx" {build} + "lwt_log" {build} "fileutils" {build} "ppx_deriving" {build} "ppx_deriving_yojson" {build} |