forked from
anil.recoil.org/monopam-myspace
My aggregated monorepo of OCaml code, automaintained
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "RFC 3492 Punycode and IDNA implementation for OCaml"
4description: """
5A high-quality implementation of RFC 3492 (Punycode) with IDNA support.
6 Provides encoding and decoding of internationalized domain names,
7 with proper Unicode normalization and mixed-case annotation support."""
8maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
9authors: ["Anil Madhavapeddy"]
10license: "ISC"
11homepage: "https://tangled.org/@anil.recoil.org/ocaml-punycode"
12bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-punycode/issues"
13depends: [
14 "ocaml" {>= "5.4.0"}
15 "dune" {>= "3.20" & >= "3.0"}
16 "uutf" {>= "1.0.0"}
17 "uunf" {>= "15.0.0"}
18 "domain-name" {>= "0.4.0"}
19 "odoc" {with-doc}
20 "alcotest" {with-test}
21]
22build: [
23 ["dune" "subst"] {dev}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36x-maintenance-intent: ["(latest)"]