OCaml implementation of the Mozilla Public Suffix service

fix-deps

+3 -4
+1 -2
dune-project
··· 18 18 "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.") 19 19 (depends 20 20 (ocaml (>= 4.14.0)) 21 - (dune (>= 3.0)) 22 21 (domain-name (>= 0.4.0)) 23 - (punycode (>= 0.1.0)) 22 + punycode 24 23 (cmdliner (>= 1.3.0)) 25 24 (alcotest :with-test)))
+2 -2
publicsuffix.opam
··· 9 9 homepage: "https://tangled.org/@anil.recoil.org/ocaml-publicsuffix" 10 10 bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-publicsuffix/issues" 11 11 depends: [ 12 + "dune" {>= "3.18"} 12 13 "ocaml" {>= "4.14.0"} 13 - "dune" {>= "3.18" & >= "3.0"} 14 14 "domain-name" {>= "0.4.0"} 15 - "punycode" {>= "0.1.0"} 15 + "punycode" 16 16 "cmdliner" {>= "1.3.0"} 17 17 "alcotest" {with-test} 18 18 "odoc" {with-doc}