this repo has no description
1opam-version: "2.0" 2maintainer: "zandoye@gmail.com" 3authors: [ "ZAN DoYe" ] 4homepage: "https://bitbucket.org/zandoye/charinfo_width/" 5bug-reports: "https://bitbucket.org/zandoye/charinfo_width/issues" 6license: "MIT" 7dev-repo: "hg+https://bitbucket.org/zandoye/charinfo_width" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10 ["dune" "runtest" "-p" name "-j" jobs] {with-test & (ocaml:version >= "4.04")} 11] 12depends: [ 13 "ocaml" {>= "4.02.3"} 14 "result" 15 "camomile" {>= "1.0.0" & < "2.0~"} 16 "dune" {>= "1.4"} 17 "ppx_expect" {with-test} 18] 19 20synopsis: "Determine column width of 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: 26 "https://github.com/ocaml/opam-source-archives/raw/main/charInfo_width-0.1.0.tar.gz" 27 checksum: [ 28 "sha256=08fb7fc94018d9a499e0fdd46a1df25560151bc43b9df3c182eb606e3a689412" 29 "md5=b1856eb22cafcaf564d2d11be5d522c0" 30 ] 31}