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 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
35]
36install: [
37 [ "dune" "install" "-p" name ] {with-test}
38 [ "ocaml" "./test/test_runes.ml" ] {with-test}
39]
40
41depends: [
42 "ocaml" {>= "4.08.0"}
43 "dune" {>= "2.6.0"}
44 "conf-pkg-config" {build}
45 "eqaf"
46 "fmt" {with-test}
47 "alcotest" {with-test}
48 "bos" {with-test}
49 "astring" {with-test}
50 "fpath" {with-test}
51 "rresult" {with-test}
52 "ocamlfind" {with-test}
53]
54
55conflicts: [
56 "mirage-xen" {< "6.0.0"}
57 "ocaml-freestanding"
58]
59url {
60 src:
61 "https://github.com/mirage/digestif/releases/download/v1.1.3/digestif-1.1.3.tbz"
62 checksum: [
63 "sha256=c32b8ecbc40b22645ae3d6e386bb9c9c5ab2fde130a252e994b18eb0d580c92e"
64 "sha512=1f76d1ca38cc0e5a04359d197783bc5cf479d01d732a92b4e8e5a7ef0651a645a12d9c51535531e274a894b445d78d98da1fd3201bf47c232f1f6b74ff051f80"
65 ]
66}
67x-commit-hash: "5a959baee61a19e4a4243dd00cdefa5e726d4109"