this repo has no description
1opam-version: "2.0" 2synopsis: "Arbitrary-precision floating-point decimal library" 3description: """ 4Arbitrary-precision floating-point decimal library ported from 5the Python decimal module.""" 6maintainer: ["Yawar Amin <yawar.amin@gmail.com>"] 7authors: ["Yawar Amin <yawar.amin@gmail.com>"] 8license: "PSF-2.0" 9homepage: "https://github.com/yawaramin/ocaml-decimal" 10doc: "https://yawaramin.github.io/ocaml-decimal/api" 11bug-reports: "https://github.com/yawaramin/ocaml-decimal/issues" 12depends: [ 13 "dune" {>= "2.7"} 14 "alcotest" {>= "1.5.0" & < "2.0.0" & with-test} 15 "angstrom" {>= "0.15.0" & < "1.0.0" & with-test} 16 "ocaml" {>= "4.08.0"} 17 "zarith" {>= "1.10" & < "2.0.0"} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/yawaramin/ocaml-decimal.git" 35available: 36 arch = "arm64" | arch = "x86_64" 37url { 38 src: 39 "https://github.com/yawaramin/ocaml-decimal/releases/download/v0.3.1/decimal-0.3.1.tbz" 40 checksum: [ 41 "sha256=90b4a00b2703c79f6237ba3bbf15a0876aac8364361357b825abec1561dc8166" 42 "sha512=6e78d4b0467c2fa1aaf75f3b40b95936c4f87354281e8a1350838c31b5e5581c27e9f85c4c2209fdd9d8c9ef5429671c3e124f85a3b7741617bca48d6c58e065" 43 ] 44} 45x-commit-hash: "93b70ef9e4ded77bd5a553c512b3d38689622c76"