this repo has no description
1opam-version: "2.0" 2synopsis: "Non-blocking streaming Unicode codec for OCaml" 3description: """\ 4**Warning.** You are encouraged not to use this library. 5 6- As of OCaml 4.14, both UTF encoding and decoding are available 7 in the standard library, see the `String` and `Buffer` modules. 8- If you are looking for a stream abstraction compatible with 9 effect based concurrency look into [`bytesrw`] package.""" 10maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 11authors: "The uutf programmers" 12license: "ISC" 13tags: ["unicode" "text" "utf-8" "utf-16" "codec" "org:erratique"] 14homepage: "https://erratique.ch/software/uutf" 15doc: "https://erratique.ch/software/uutf/doc/" 16bug-reports: "https://github.com/dbuenzli/uutf/issues" 17depends: [ 18 "ocaml" {>= "4.08.0"} 19 "ocamlfind" {build} 20 "ocamlbuild" {build} 21 "topkg" {build & >= "1.0.3"} 22] 23depopts: ["cmdliner"] 24conflicts: [ 25 "cmdliner" {< "1.3.0"} 26] 27build: [ 28 "ocaml" 29 "pkg/pkg.ml" 30 "build" 31 "--dev-pkg" 32 "%{dev}%" 33 "--with-cmdliner" 34 "%{cmdliner:installed}%" 35] 36dev-repo: "git+https://erratique.ch/repos/uutf.git" 37url { 38 src: "https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz" 39 checksum: 40 "sha512=e35f408bc971cd8da3077e6c3321e0d8f4eb569898e0e219fde62dae78fbd0a0095cb7f036287656f6a1b346584f7b9f0c6dec0a5a092180da36e43247027598" 41} 42x-maintenance-intent: ["(latest)"]