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: [ 31 [ "dune" "subst" ] {dev} 32 [ "dune" "build" "-p" name "-j" jobs ] 33 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 34] 35 36depends: [ 37 "ocaml" {>= "4.03.0" & < "5.0"} 38 "dune" {>= "1.1"} 39 "eqaf" 40 "base-bytes" 41 "base-bigarray" 42 "fmt" {with-test} 43 "alcotest" {with-test & < "1.0.0"} 44] 45 46depopts: [ 47 "ocaml-freestanding" 48 "mirage-xen-posix" 49] 50 51conflicts: [ 52 "mirage-xen-posix" {< "3.1.0"} 53 "ocaml-freestanding" {< "0.4.1"} 54 "eqaf" {= "0.3"} 55] 56url { 57 src: 58 "https://github.com/mirage/digestif/releases/download/v0.7.1/digestif-v0.7.1.tbz" 59 checksum: [ 60 "sha256=406e3ff4c8203b7343591d0e880f6d77f94e918faa980b5bcff1079be9447e6c" 61 "md5=f13be3170563925a2b50a4769594a31d" 62 ] 63} 64available: [ arch != "s390x" ]