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