Punycode (RFC3492) in OCaml
at main 38 lines 1.1 kB view raw
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.21" & >= "3.0"} 16 "fmt" {>= "0.9.0"} 17 "uutf" {>= "1.0.0"} 18 "uunf" {>= "15.0.0"} 19 "domain-name" {>= "0.4.0"} 20 "odoc" {with-doc} 21 "alcotest" {with-test} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-punycode" 38x-maintenance-intent: ["(latest)"]