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 * SHA3 25 * Keccak-256 26 * WHIRLPOOL 27 * BLAKE2B 28 * BLAKE2S 29 * RIPEMD160 30""" 31 32build: [ 33 [ "dune" "build" "-p" name "-j" jobs ] 34 [ "ocaml" "./install/install.ml" ] 35 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 36] 37install: [ 38 [ "dune" "install" "-p" name ] {with-test} 39 [ "ocaml" "./test/test_runes.ml" ] {with-test} 40] 41 42depends: [ 43 "ocaml" {>= "4.05.0"} 44 "dune" {>= "2.6.0"} 45 "conf-pkg-config" {build} 46 "eqaf" 47 "base-bytes" 48 "bigarray-compat" 49 "stdlib-shims" 50 "fmt" {with-test} 51 "alcotest" {with-test} 52 "bos" {with-test} 53 "astring" {with-test} 54 "fpath" {with-test} 55 "rresult" {with-test} 56 "ocamlfind" {with-test} 57] 58depopts: [ 59 "ocaml-freestanding" 60] 61 62conflicts: [ 63 "mirage-xen" {< "6.0.0"} 64 "ocaml-freestanding" {< "0.6.0"} 65] 66url { 67 src: 68 "https://github.com/mirage/digestif/releases/download/v1.1.1/digestif-1.1.1.tbz" 69 checksum: [ 70 "sha256=858fcaaf983c528f8e744f81accc7b0dd254c96b17222f12e1f270e8521d3799" 71 "sha512=019dfc8dd4a5e5f01fd142729d09135aca3d77a463c2910449203661f7e808ded68c9078b2cc1eb0f7acac7dcf21fa6250a93d8976ac94cd2cfd44b82eac8242" 72 ] 73} 74x-commit-hash: "17b0dbc2d2b84769e63edcada0befaf0381809ff"