this repo has no description
1opam-version: "2.0" 2synopsis: "A library for building correct HTML and SVG documents" 3description: 4 "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." 5maintainer: ["dev@ocsigen.org"] 6authors: ["The ocsigen team"] 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8homepage: "https://github.com/ocsigen/tyxml" 9doc: "https://ocsigen.org/tyxml/latest/manual/intro" 10bug-reports: "https://github.com/ocsigen/tyxml/issues" 11depends: [ 12 "dune" {>= "2.7"} 13 "ocaml" {>= "4.04"} 14 "alcotest" {with-test} 15 "re" {>= "1.7.2"} 16 "seq" 17 "uutf" {>= "1.0.0"} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/ocsigen/tyxml.git" 35url { 36 src: 37 "https://github.com/ocsigen/tyxml/releases/download/4.6.0/tyxml-4.6.0.tbz" 38 checksum: [ 39 "sha256=bfeb673c6b4e120a4eca4c48448add47dc3f8d02c2b40f63ffdccc4e91c902dd" 40 "sha512=69750eeaf467014282087bf9628f3278f3e5f00f4c7400358750d208664cfc3f79a5cba16767d2935e53477d1a6862fe08c5b801b69052ec12e09d1a93a5e9b4" 41 ] 42} 43x-commit-hash: "d2916535536f2134bad7793a598ba5b7327cae41"