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"
5doc: "https://github.com/flowtype/ocaml-dtoa"
6license: "MIT"
7dev-repo: "git+https://github.com/flowtype/ocaml-dtoa.git"
8bug-reports: "https://github.com/flowtype/ocaml-dtoa/issues"
9depends: [
10 "ocaml" {>= "4.01.0"}
11 "jbuilder" {>= "1.0+beta7"}
12 "ounit" {with-test & >= "2.0.0"}
13]
14build: [
15 ["jbuilder" "build" "-p" name "-j" jobs]
16 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
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:
24 "https://github.com/flowtype/ocaml-dtoa/releases/download/v0.3.1/dtoa-0.3.1.tbz"
25 checksum: [
26 "sha256=d65e91d1ca794c0c82b29c8bd1d36a7507a09695b64be8c17c068b7f80d4fe67"
27 "md5=c782646b12a03015dcecf687ea120a05"
28 ]
29}