34 lines
No EOL
1.1 KiB
Text
34 lines
No EOL
1.1 KiB
Text
version: "2.0.2"
|
|
opam-version: "2.0"
|
|
homepage: "https://github.com/mirage/mirage-crypto"
|
|
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
|
|
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
|
|
doc: "https://mirage.github.io/mirage-crypto/doc"
|
|
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
|
|
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
|
|
license: "ISC"
|
|
synopsis: "A cryptographically secure PRNG"
|
|
|
|
build: [ ["dune" "subst"] {dev}
|
|
["dune" "build" "-p" name "-j" jobs ]
|
|
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
|
|
|
|
depends: [
|
|
"ocaml" {>= "4.14.0"}
|
|
"dune" {>= "2.7"}
|
|
"dune-configurator" {>= "2.0.0"}
|
|
"duration"
|
|
"logs"
|
|
"mirage-crypto" {=version}
|
|
"digestif" {>= "1.1.4"}
|
|
"ounit2" {with-test}
|
|
"randomconv" {with-test & >= "0.2.0"}
|
|
"ohex" {with-test & >= "0.2.0"}
|
|
]
|
|
conflicts: [ "mirage-runtime" {< "3.8.0"} ]
|
|
description: """
|
|
Mirage-crypto-rng provides a random number generator interface, and
|
|
implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix
|
|
sublibrary)
|
|
"""
|
|
x-maintenance-intent: [ "(latest)" ] |