OCaml HTML5 parser/serialiser based on Python's JustHTML
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Pure OCaml HTML5 parser implementing the WHATWG specification" 4description: 5 "A pure OCaml HTML5 parser that passes the html5lib-tests suite. Implements the WHATWG HTML5 parsing specification including tokenization, tree construction, encoding detection, and CSS selector queries." 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: ["Anil Madhavapeddy <anil@recoil.org>"] 8license: "MIT" 9homepage: "https://tangled.org/@anil.recoil.org/ocaml-html5rw" 10bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-html5rw/issues" 11depends: [ 12 "dune" {>= "3.20"} 13 "ocaml" {>= "5.1.0"} 14 "astring" {>= "0.8.5"} 15 "bytesrw" {>= "0.3.0"} 16 "uutf" {>= "1.0.0"} 17 "uuuu" {>= "0.3.0"} 18 "uunf" {>= "15.0.0"} 19 "xmlm" {>= "1.4.0"} 20 "odoc" {with-doc} 21 "jsont" {>= "0.2.0"} 22 "cmdliner" {>= "1.3.0"} 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37] 38x-maintenance-intent: ["(latest)"]