1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
version: "1.0.2"
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Arbitrary-precision floating-point decimal library"
description: """
Arbitrary-precision floating-point decimal library ported from
the Python decimal module."""
maintainer: ["Yawar Amin <yawar.amin@gmail.com>"]
authors: ["Yawar Amin <yawar.amin@gmail.com>"]
license: "PSF-2.0"
homepage: "https://github.com/yawaramin/ocaml-decimal"
doc: "https://yawaramin.github.io/ocaml-decimal/api"
bug-reports: "https://github.com/yawaramin/ocaml-decimal/issues"
depends: [
"dune" {>= "2.7"}
"alcotest" {>= "1.5.0" & < "2.0.0" & with-test}
"angstrom" {>= "0.15.0" & < "1.0.0" & with-test}
"ocaml" {>= "4.08.0"}
"zarith" {>= "1.10" & < "2.0.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/yawaramin/ocaml-decimal.git"
available:
arch = "arm64" | arch = "x86_64"
|