this repo has no description
1opam-version: "2.0" 2maintainer: "Marshall Roch <mroch@fb.com>" 3authors: "Marshall Roch <mroch@fb.com>" 4license: "MIT" 5homepage: "https://github.com/flowtype/ocaml-dtoa" 6doc: "https://github.com/flowtype/ocaml-dtoa" 7bug-reports: "https://github.com/flowtype/ocaml-dtoa/issues" 8depends: [ 9 "ocaml" {>= "4.01.0"} 10 "dune" {>= "1.0"} 11 "ounit" {with-test & >= "2.0.0"} 12] 13build: [ 14 ["dune" "build" "-p" name "-j" jobs] 15 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "5.0.0"} 16] 17dev-repo: "git+https://github.com/flowtype/ocaml-dtoa.git" 18synopsis: "Converts OCaml floats into strings (doubles to ascii, 'd to a'), using the efficient Grisu3 algorithm" 19description: """ 20This is a (partial) port of Google's double-conversion library from C++ to C. 21""" 22url { 23 src: 24 "https://github.com/flowtype/ocaml-dtoa/releases/download/v0.3.2/dtoa-v0.3.2.tbz" 25 checksum: [ 26 "sha256=b613700295897ed57c2f4f1a6809084813124d9fd66c5dd5334f20dc32b0707e" 27 "sha512=16b31cd2af6b51be702dc9b9f6837e2c213f15cab634afe6c7bb6c7e827071af4694976c1d7e4e713289f41c330f2ec25685b7b26734007889513d462a2e9518" 28 ] 29}