this repo has no description
1opam-version: "2.0" 2synopsis: "Xoshiro PRNGs as drop-in replacements for Stdlib.Random" 3description: """ 4This package provides the Xoshiro family of pseudo-random 5 number generators for OCaml, with an interface mimmicing that of the standard 6 library. The Xoshiro generator are not cryptographically safe, but they 7 provide better randomness than the standard library. 8 9 By default, this package comes as C bindings for efficiency. If bindings are 10 not welcome (eg. to compile to JS), one may depend on xoshiro.pure instead, 11 providing the exact same interface, implemented as pure OCaml.""" 12maintainer: ["Niols “Niols” Jeannerod <niols@niols.fr>"] 13authors: [ 14 "Niols “Niols” Jeannerod <niols@niols.fr>" 15 "Martin Pépin <kerl@wkerl.me>" 16] 17license: "LGPL-3.0-or-later" 18homepage: "https://github.com/LesBoloss-es/xoshiro" 19doc: "https://lesboloss-es.github.io/xoshiro/" 20bug-reports: "https://github.com/LesBoloss-es/xoshiro/issues" 21depends: [ 22 "dune" {>= "2.8"} 23 "make-random" 24 "base-bigarray" 25 "core_bench" {with-test} 26 "testu01" {with-test & >= "1.2.3-0.2"} 27 "odoc" {with-doc} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@runtest" {with-test} 40 "@doc" {with-doc} 41 ] 42] 43dev-repo: "git+https://github.com/LesBoloss-es/xoshiro.git" 44url { 45 src: "https://github.com/LesBoloss-es/xoshiro/archive/0.1.tar.gz" 46 checksum: [ 47 "md5=189dfb19a24fea0fdfe9627e419eb55d" 48 "sha512=ee9ced16ea5ede0e567522e8d82e35f27924c9b922bcd342dc8becb3cf4f176b79ab77e30bf472ce61642e879552d309506b5652f411455023cb9aef5162d2ca" 49 ] 50}