this repo has no description
1opam-version: "2.0" 2maintainer: "hannes@mehnert.org" 3homepage: "https://github.com/mirage/mirage-random-stdlib" 4bug-reports: "https://github.com/mirage/mirage-random-stdlib/issues" 5dev-repo: "git+https://github.com/mirage/mirage-random-stdlib.git" 6doc: "https://mirage.github.io/mirage-random-stdlib/" 7authors: ["Thomas Gazagnaire" "Hannes Mehnert"] 8tags: [ "org:mirage"] 9license: "ISC" 10 11build: [ 12 [ "dune" "subst" ] {dev} 13 [ "dune" "build" "-p" name "-j" jobs ] 14] 15 16depends: [ 17 "dune" {>="1.3.0"} 18 "cstruct" {>= "1.9.0"} 19 "ocaml" {>= "4.06.0"} 20 "lwt" 21 "mirage-random" {>= "2.0.0" & < "4.0.0"} 22 "mirage-entropy" 23] 24 25synopsis: "Random device implementation using the OCaml stdlib" 26description: """ 27mirage-random-stdlib implements `Mirage_random.C` using the `Random` from 28the OCaml standard library (a lagged-Fibonacci PRNG). The entropy is seeded 29by mirage-entropy, depending on CPU features. 30""" 31url { 32 src: 33 "https://github.com/mirage/mirage-random-stdlib/releases/download/v0.1.0/mirage-random-stdlib-v0.1.0.tbz" 34 checksum: [ 35 "sha256=51783442c9b97711715ce62a15bcbefd3b01ae32c737f998eede395bc2dbfda3" 36 "sha512=979f4eabe61e97ceb84f6c0dddc03e2c46b404a8786fce3913feb2351369b8e755a1b737aa2d13db5abade72439186b04774ca892fe2b7f28b386fe6846d443a" 37 ] 38} 39flags: deprecated 40post-messages: [ "mirage-random-stdlib is deprecated" ] 41x-maintenance-intent: ["(none)"]