this repo has no description
1opam-version: "2.0" 2maintainer: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 3 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4authors: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 5 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 6homepage: "https://github.com/mirage/digestif" 7bug-reports: "https://github.com/mirage/digestif/issues" 8dev-repo: "git+https://github.com/mirage/digestif.git" 9doc: "https://mirage.github.io/digestif/" 10license: "MIT" 11synopsis: "Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)" 12description: """ 13Digestif is a toolbox to provide hashes implementations in C and OCaml. 14 15It uses the linking trick and user can decide at the end to use the C implementation or the OCaml implementation. 16 17We provides implementation of: 18 * MD5 19 * SHA1 20 * SHA224 21 * SHA256 22 * SHA384 23 * SHA512 24 * WHIRLPOOL 25 * BLAKE2B 26 * BLAKE2S 27 * RIPEMD160 28""" 29 30build: [ "dune" "build" "-p" name "-j" jobs ] 31run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 32 33depends: [ 34 "ocaml" {>= "4.03.0" & < "5.0"} 35 "dune" {>= "1.9.2" & < "2.6"} 36 "eqaf" 37 "base-bytes" 38 "bigarray-compat" 39 "fmt" {with-test} 40 "alcotest" {with-test & < "1.0.0"} 41] 42 43depopts: [ 44 "ocaml-freestanding" 45 "mirage-xen-posix" 46] 47 48conflicts: [ 49 "mirage-xen-posix" {< "3.1.0"} 50 "ocaml-freestanding" {< "0.4.1"} 51 "mirage-runtime" {>= "4.0.0"} 52] 53url { 54 src: 55 "https://github.com/mirage/digestif/releases/download/v0.7.4/digestif-v0.7.4.tbz" 56 checksum: [ 57 "sha256=af7cc1cccaf0a1dd572e666a0a9a2ab73f00bf5b469f664f728c767fa13025de" 58 "sha512=921a1e0e311231683093d8772da10eefac8f78fc928a4cbe8e0944ead3bba430324b39173fea387ddf6488b48f4be59291951838ee8c6db60837a481f4ec8a71" 59 ] 60} 61available: [ arch != "s390x" ]