this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis:
4 "A pure OCaml port of the Random123 counter based random number generator from DEShaw Research"
5description:
6 "Currently implements the Threefry 2&4 digit 32&64 bit random number generators"
7maintainer: ["simon.parry@karoshibee.com"]
8authors: ["Simon Parry"]
9license: "MIT"
10homepage: "https://github.com/KaroshiBee/randii"
11doc: "https://github.com/KaroshiBee/randii"
12bug-reports: "https://github.com/KaroshiBee/randii/issues"
13depends: [
14 "ocaml" {>= "4.08"}
15 "logs" {>= "0.7.0"}
16 "cmdliner" {>= "1.1.1"}
17 "fmt" {>= "0.9.0"}
18 "integers" {>= "0.4.0"}
19 "dune" {>= "3.0" & > "1.5"}
20 "testu01" {>= "1.2.3-0.2"}
21 "alcotest" {with-test}
22 "zarith" {with-test & >= "1.12"}
23 "bisect_ppx" {with-test & >= "2.6.0"}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/KaroshiBee/randii.git"
41url {
42 src: "https://github.com/KaroshiBee/randii/archive/1.0.0.tar.gz"
43 checksum: [
44 "md5=1f8f3a98495497cece0131f11c0297e7"
45 "sha512=4377b604e5debe94ba98e980ffdbb92e936306460b7db65eee2d1d5493f0abc12f54982527d49351b8461e3208ac158aed79a932575872956e849a432d058e85"
46 ]
47}