this repo has no description
1opam-version: "2.0" 2synopsis: "Versioned Random module from the OCaml standard library" 3description: """ 4The stdlib-random package provides a stable and compiler-independent 5implementation of all the PRNGs used in the Random module. 6Those PRNGs are available in the various libraries: 7- stdlib-random.v3: OCaml 3.07 to 3.11 PRNG 8- stdlib-random.v4: OCaml 3.12 to 4.14 PRNG 9- stdlib-random.v5: current OCaml 5.0 PRNG 10- stdlib-random.v5o: pure OCaml version of the OCaml 5 PRNG 11All those libraries can be used together and the signature of their 12Random$n module has been extended to the latest signature whenever possible. 13""" 14maintainer: ["Florian Angeletti <octa@polychoron.fr>"] 15authors: ["Damien Doligez" "Xavier Leroy"] 16license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 17homepage: "https://github.com/ocaml/stdlib-random" 18bug-reports: "https://github.com/ocaml/stdlib-random/issues" 19depends: [ 20 "dune" {>= "2.7"} 21 "cppo" {>= "1.1.0"} 22 "ocaml" {>= "4.08.0" & < "5.2"} 23 "odoc" {with-doc} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38] 39dev-repo: "git+https://github.com/ocaml/stdlib-random.git" 40url { 41 src: 42 "https://github.com/ocaml/stdlib-random/releases/download/1.1.0/stdlib-random-1.1.0.tbz" 43 checksum: [ 44 "sha256=8b930182fe680b8b96ad1e082b87a17c8011d95a670f557c703035f04f812559" 45 "sha512=c406f3598664593676c0cfcc9f248c0c6114602ab0cd9f2c9ab03243debc534515ab61eb8de8c92bdbbed2a6c916441606263e7e577b1a989da41660315c12dc" 46 ] 47} 48x-commit-hash: "838fe6e045219b7cdacb5a53d8679d70a564f9b7"