The opam repository for my Advent of Agentic Humps 2025

+htmlrw

+38
+38
packages/html5rw/html5rw.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pure OCaml HTML5 parser implementing the WHATWG specification" 3 + description: 4 + "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." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 7 + license: "MIT" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-html5rw" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-html5rw/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git" 11 + depends: [ 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 + "odoc" {with-doc} 19 + "jsont" {>= "0.2.0"} 20 + ] 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + [ 24 + "dune" 25 + "build" 26 + "-p" 27 + name 28 + "-j" 29 + jobs 30 + "@install" 31 + "@runtest" {with-test} 32 + "@doc" {with-doc} 33 + ] 34 + ] 35 + x-maintenance-intent: ["(latest)"] 36 + url { 37 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main" 38 + }