My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2
3(name publicsuffix)
4
5(version 0.1.0)
6
7(generate_opam_files true)
8
9(license ISC)
10
11(authors "Anil Madhavapeddy")
12
13(maintainers "Anil Madhavapeddy")
14
15(source
16 (github avsm/ocaml-publicsuffix))
17
18(package
19 (name publicsuffix)
20 (synopsis "Public Suffix List implementation for OCaml")
21 (description
22 "Parse and query the Mozilla Public Suffix List (PSL) to determine public suffixes and registrable domains. Supports ICANN and private domain sections, wildcard rules, and exception rules per the PSL specification.")
23 (depends
24 (ocaml (>= 4.14.0))
25 (dune (>= 3.0))
26 (domain-name (>= 0.4.0))
27 (punycode (>= 0.1.0))
28 (alcotest :with-test)))