this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" 3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>" 4homepage: "https://github.com/dinosaure/yuscii" 5bug-reports: "https://github.com/dinosaure/yuscii/issues" 6dev-repo: "git+https://github.com/dinosaure/yuscii.git" 7doc: "https://dinosaure.github.io/yuscii/" 8license: "MIT" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "dune" {>= "1.1.1" & < "2.0"} 18 "fmt" 19 "uutf" 20 "rresult" 21 "cmdliner" 22 "alcotest" {with-test & < "1.0.0"} 23] 24synopsis: "[Yuscii](https://en.wikipedia.org/wiki/YUSCII)" 25description: """ 26---------------------------------------------- 27 28Yuscii is a little library to decode an UTF-7 ([RFC 292152](https://tools.ietf.org/html/rfc2152) for instance) input flow to Unicode. 30This library does not implement an encoder because, Eh guy, we are in 2018... 31 32Then, it provides a non-blocking decoder to translate UTF-7 codepoint to UTF-8 33codepoint.""" 34url { 35 src: 36 "https://github.com/dinosaure/yuscii/releases/download/v0.2.0/yuscii-0.2.0.tbz" 37 checksum: [ 38 "sha256=db4639b5bc51048f50bd592a1145ea4ee5f1274a33253ad369f8e8cd14a87280" 39 "md5=b7344daa8e56177d38a56a1fdc4773e5" 40 ] 41}