A repository of opam repositories, for use by oi
0

Configure Feed

Select the types of activity you want to include in your feed.

1opam-version: "2.0" 2synopsis: "Minimal XML parser and serializer" 3description: """\ 4A simple XML parser and serializer for OCaml. Supports elements, 5attributes, text content, CDATA sections, comments, processing 6instructions, entity references, and self-closing tags. UTF-8 7validation via uutf. No namespace or DTD/schema validation support.""" 8maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 9authors: "Thomas Gazagnaire <thomas@gazagnaire.org>" 10license: "ISC" 11tags: ["org:blacksun" "codec.text"] 12homepage: "https://tangled.org/gazagnaire.org/ocaml-xml" 13bug-reports: "https://tangled.org/gazagnaire.org/ocaml-xml/issues" 14depends: [ 15 "dune" {>= "3.21"} 16 "ocaml" {>= "4.14.0"} 17 "bytesrw" {>= "0.1.0"} 18 "fmt" {>= "0.9.0"} 19 "uutf" {>= "1.0.0"} 20 "nox-loc" {>= "0.1"} 21 "alcotest" {with-test} 22 "astring" {with-test} 23 "mdx" {with-test} 24 "alcobar" {with-test} 25 "nox-memtrace" {with-test} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-xml" 43url { 44 src: 45 "git+https://tangled.org/gazagnaire.org/ocaml-xml#4ed7af7c5a493bcec9038b4cbd40669f885f0f28" 46} 47x-d10-archive: 48 "8b21e0e983f34c3ea88e9c651916807ccdf26dfb35272b0f22489942a52bde46" 49x-maintenance-intent: ["(latest)"] 50x-oi-source-url: "git+https://tangled.org/gazagnaire.org/ocaml-xml#main" 51x-quality-build: "2026-04-15" 52x-quality-fuzz: "2026-04-15" 53x-quality-test: "2026-04-15"