Skip to content

Commit

Permalink
opam 2; upper version bounds on js_of_ocaml and tyxml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Rochel committed Dec 18, 2018
1 parent 49b7d20 commit bd729e3
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions opam
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
opam-version: "1.2"
opam-version: "2.0"
name: "eliom"
version: "dev"
version: "6.4.0"
maintainer: "[email protected]"
authors: "[email protected]"
synopsis: "Client/server Web framework"
description: "Eliom is a framework for implementing client/server Web applications. It introduces new concepts to simplify the implementation of common behaviors, and uses advanced static typing features of OCaml to check many properties of the Web application at compile-time. Eliom allows implementing the whole application as a single program that includes both the client and the server code. We use a syntax extension to distinguish between the two sides. The client-side code is compiled to JS using Ocsigen Js_of_ocaml."
homepage: "http://ocsigen.org/eliom/"
bug-reports: "https://github.com/ocsigen/eliom/issues/"
license: "LGPL-2.1 with OCaml linking exception"
dev-repo: "https://github.com/ocsigen/eliom.git"
dev-repo: "git+https://github.com/ocsigen/eliom.git"
build: [make]
depends: [
"ocaml" {>= "4.06.1"}
"ocamlfind"
"deriving" {>= "0.6"}
"ppx_deriving"
"ppx_tools" {>= "0.99.3"}
"js_of_ocaml" {>= "3.0" < "3.3"}
"js_of_ocaml-lwt"
"js_of_ocaml" {>= "3.0" & < "3.3"}
"js_of_ocaml-lwt" {< "3.3"}
"js_of_ocaml-ocamlbuild" {build}
"js_of_ocaml-ppx"
("js_of_ocaml-ppx" {<= "3.0.2"} | "js_of_ocaml-ppx_deriving_json")
"js_of_ocaml-ppx" {<= "3.0.2"} | "js_of_ocaml-ppx_deriving_json"
"js_of_ocaml-tyxml" {< "3.2.0"}
"lwt_log"
"lwt_ppx"
"lwt_camlp4"
"tyxml" {>= "4.0.0"}
"ocsigenserver" {>= "2.9"}
"tyxml" {>= "4.0.0" & < "4.3.0"}
"ocsigenserver" {>= "2.10"}
"ipaddr" {>= "2.1"}
"reactiveData" {>= "0.2.1"}
("dbm" | "sqlite3")
"dbm" | "sqlite3"
"base-bytes"
]
available: [ocaml-version >= "4.03.0"]

0 comments on commit bd729e3

Please sign in to comment.