this repo has no description
1opam-version: "2.0"
2maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
3authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
4homepage: "https://github.com/mirage/eqaf"
5bug-reports: "https://github.com/mirage/eqaf/issues"
6dev-repo: "git+https://github.com/mirage/eqaf.git"
7doc: "https://mirage.github.io/eqaf/"
8license: "MIT"
9synopsis: "Constant-time equal function on string"
10description: """
11This package provides an equal function on string in constant-time to avoid timing-attack with crypto stuff.
12"""
13
14build: [
15 [ "dune" "subst" ] {dev}
16 [ "dune" "build" "-p" name "-j" jobs ]
17]
18
19depends: [
20 "ocaml" {>= "4.03.0"}
21 "dune"
22 "base64" {with-test}
23 "alcotest" {with-test}
24 "crowbar" {with-test}
25]
26
27depopts: [
28 "cstruct"
29 "bigarray-compat"
30]
31
32conflicts: [
33 "cstruct" {< "4.0.0"}
34]
35url {
36 src: "https://github.com/mirage/eqaf/releases/download/v0.7/eqaf-v0.7.tbz"
37 checksum: [
38 "sha256=10e666aea9a413e63c5e9dd1c0566aed78a2bf0f4e09caa2bb3b88a021bf09e0"
39 "sha512=38a2687bafb5cd1d1deb51ceceba94fcff9ce88515fd2c61ec1182808c50c0e3373a4d71fe51a17a23c74616c5ab350a4cf7914de656886981538abf2b57ff61"
40 ]
41}