this repo has no description
1opam-version: "2.0" 2maintainer: "zandoye@gmail.com" 3authors: [ "ZAN DoYe" ] 4homepage: "https://github.com/kandu/charinfo_width/" 5bug-reports: "https://github.com/kandu/charinfo_width/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/kandu/charinfo_width.git" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10 ["dune" "runtest" "-p" name "-j" jobs] {with-test & (ocaml:version >= "4.04.0")} 11] 12depends: [ 13 "ocaml" {>= "4.02.3"} 14 "result" 15 "camomile" {>= "1.0.0" & < "2.0~"} 16 "dune" 17 "ppx_expect" {with-test} 18] 19 20synopsis: "Determine column width for a character" 21description: """ 22This module is implemented purely in OCaml and the width function follows the prototype of POSIX's wcwidth.""" 23 24url { 25 src: "https://github.com/kandu/charInfo_width/archive/1.1.0.tar.gz" 26 checksum: [ 27 "sha256=21b2ed7a7bfb92da47c01edb4126c0f2dedda37c9c07c8e17ab58abe38838172" 28 "md5=a539436d1da4aeb93711303f107bec7e" 29 ] 30}