Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(lang dune 2.7)
(lang dune 3.18)
(name tyxml)

(generate_opam_files true)
Expand All @@ -21,6 +21,7 @@ let to_reason = <a href=\"reasonml.github.io/\"> \"Reason!\" </a>
The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
It works with textual trees, virtual DOM trees, or any TyXML module.
")
(maintenance_intent "(latest)")
(depends
(ocaml (>= 4.08))
(tyxml (= :version))
Expand All @@ -41,6 +42,7 @@ let%html to_ocaml = \"<a href='ocaml.org'>OCaml!</a>\"
The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
It works with textual trees, virtual DOM trees, or any TyXML module.
")
(maintenance_intent "(latest)")
(depends
(ocaml (>= 4.08))
(tyxml (= :version))
Expand All @@ -53,6 +55,7 @@ It works with textual trees, virtual DOM trees, or any TyXML module.
(package
(name tyxml-syntax)
(synopsis "Common layer for the JSX and PPX syntaxes for Tyxml")
(maintenance_intent "(latest)")
(depends
(ocaml (>= 4.08))
(ppxlib (>= 0.36))
Expand All @@ -64,6 +67,7 @@ It works with textual trees, virtual DOM trees, or any TyXML module.
(name tyxml)
(synopsis "A library for building correct HTML and SVG documents")
(description "TyXML provides a set of convenient combinators that uses the OCaml type system to ensure the validity of the generated documents. TyXML can be used with any representation of HTML and SVG: the textual one, provided directly by this package, or DOM trees (`js_of_ocaml-tyxml`) virtual DOM (`virtual-dom`) and reactive or replicated trees (`eliom`). You can also create your own representation and use it to instantiate a new set of combinators.")
(maintenance_intent "(latest)")
(depends
(ocaml (>= 4.08))
(re (>= 1.5.0))
Expand Down
3 changes: 2 additions & 1 deletion tyxml-jsx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ homepage: "https://github.com/ocsigen/tyxml"
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.18"}
"ocaml" {>= "4.08"}
"tyxml" {= version}
"tyxml-syntax" {= version}
Expand All @@ -41,3 +41,4 @@ build: [
]
]
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
x-maintenance-intent: ["(latest)"]
3 changes: 2 additions & 1 deletion tyxml-ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ homepage: "https://github.com/ocsigen/tyxml"
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.18"}
"ocaml" {>= "4.08"}
"tyxml" {= version}
"tyxml-syntax" {= version}
Expand All @@ -42,3 +42,4 @@ build: [
]
]
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
x-maintenance-intent: ["(latest)"]
3 changes: 2 additions & 1 deletion tyxml-syntax.opam
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ homepage: "https://github.com/ocsigen/tyxml"
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.18"}
"ocaml" {>= "4.08"}
"ppxlib" {>= "0.36"}
"re" {>= "1.5.0"}
Expand All @@ -31,3 +31,4 @@ build: [
]
]
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
x-maintenance-intent: ["(latest)"]
3 changes: 2 additions & 1 deletion tyxml.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage: "https://github.com/ocsigen/tyxml"
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.18"}
"ocaml" {>= "4.08"}
"re" {>= "1.5.0"}
"uutf" {>= "1.0.0"}
Expand All @@ -33,3 +33,4 @@ build: [
]
]
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
x-maintenance-intent: ["(latest)"]
Loading