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/dinosaure/eqaf"
5bug-reports: "https://github.com/dinosaure/eqaf/issues"
6dev-repo: "git+https://github.com/dinosaure/eqaf.git"
7doc: "https://dinosaure.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" ]
16 [ "dune" "build" "-p" name "-j" jobs ]
17 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test & ocaml:version < "5.0.0"}
18]
19
20depends: [
21 "ocaml" {>= "4.03.0"}
22 "dune"
23 "fmt" {with-test}
24 "base-bytes" {with-test}
25]
26url {
27 src:
28 "https://github.com/dinosaure/eqaf/releases/download/v0.2/eqaf-v0.2.tbz"
29 checksum: [
30 "sha256=b1cfb6404490c4984165d570a2a0c6b7244468b44319775832a986945d8346d1"
31 "md5=0832ef11a70fe5fe0c786fcf2a2a67cb"
32 ]
33}