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" "build" "-p" name "-j" jobs ] 32 [ "./install/install.ml" ] 33 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 34] 35install: [ 36 [ "dune" "install" "-p" name ] {with-test} 37 [ "./test/test_runes.ml" ] {with-test} 38] 39 40depends: [ 41 "ocaml" {>= "4.03.0"} 42 "dune" {>= "2.6.0"} 43 "eqaf" 44 "base-bytes" 45 "bigarray-compat" 46 "stdlib-shims" 47 "fmt" {with-test} 48 "alcotest" {with-test} 49 "bos" {with-test} 50 "astring" {with-test} 51 "fpath" {with-test} 52 "rresult" {with-test} 53 "ocamlfind" {build & with-test} 54] 55 56depopts: [ 57 "ocaml-freestanding" 58 "mirage-xen-posix" 59] 60 61conflicts: [ 62 "mirage-xen-posix" {< "3.1.0"} 63 "ocaml-freestanding" {< "0.4.3"} 64] 65url { 66 src: 67 "https://github.com/mirage/digestif/releases/download/v0.8.1/digestif-v0.8.1.tbz" 68 checksum: [ 69 "sha256=628ef17091e9f8b4da95c4b68adeecf090efc38717875b94baa6a1629766d573" 70 "sha512=8cabd8c6d606679ba1a65e34e114c4ebeee68fde3b1bb5a077dfe7f7fa9f6b210c0db991e68789eadb7c48eadc9db2c1229fed8138a651d3b53612e4d8beb595" 71 ] 72} 73available: [ arch != "s390x" ]