···11+# This file is generated by dune, edit dune-project instead
22+opam-version: "2.0"
33+synopsis: "Versioned Random module from the OCaml standard library"
44+description: """
55+The stdlib-random package provides a stable and compiler-independent
66+implementation of all the PRNGs used in the Random module.
77+Those PRNGs are available in the various libraries:
88+- stdlib-random.v3: OCaml 3.07 to 3.11 PRNG
99+- stdlib-random.v4: OCaml 3.12 to 4.14 PRNG
1010+- stdlib-random.v5: current OCaml 5.0 PRNG
1111+- stdlib-random.v5o: pure OCaml version of the OCaml 5 PRNG
1212+All those libraries can be used together and the signature of their
1313+Random$n module has been extended to the latest signature whenever possible.
1414+"""
1515+maintainer: ["Florian Angeletti, <octa@polychoron.fr>"]
1616+authors: ["Damien Doligez" "Xavier Leroy"]
1717+license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
1818+homepage: "https://github.com/ocaml/stdlib-random"
1919+bug-reports: "https://github.com/ocaml/stdlib-random/issues"
2020+depends: [
2121+ "dune" {>= "2.7"}
2222+ "cppo" {>= "1.1.0"}
2323+ "ocaml" {>= "4.08.0"}
2424+ "odoc" {with-doc}
2525+]
2626+build: [
2727+ ["dune" "subst"] {dev}
2828+ [
2929+ "dune"
3030+ "build"
3131+ "-p"
3232+ name
3333+ "-j"
3434+ jobs
3535+ "@install"
3636+ "@runtest" {with-test}
3737+ "@doc" {with-doc}
3838+ ]
3939+]
4040+dev-repo: "git+https://github.com/ocaml/stdlib-random.git"
4141+url {
4242+ src:
4343+ "https://github.com/ocaml/stdlib-random/archive/refs/tags/1.2.0.tar.gz"
4444+ checksum: [
4545+ "md5=d6e6e33381df77c088fc053512fc3c4c"
4646+ "sha512=74106d17d4866989895b913dc8b83c6fdce33e7969767c0fb2b250e0f62ea398e93d5188cd07aa4868bdcdcc9f99137b72ce594bf441f5268e3b78016694cac9"
4747+ ]
4848+}