opam-version: "2.0"
name:         "eqaf"
maintainer:   [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
authors:      [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
homepage:     "https://github.com/dinosaure/eqaf"
bug-reports:  "https://github.com/dinosaure/eqaf/issues"
dev-repo:     "git+https://github.com/dinosaure/eqaf.git"
doc:          "https://dinosaure.github.io/eqaf/"
license:      "MIT"
synopsis:     "Constant-time equal function on string"
description: """
This package provides an equal function on string in constant-time to avoid timing-attack with crypto stuff.
"""

build: [
  [ "dune" "subst" ]
  [ "dune" "build" "-p" name "-j" jobs ]
  [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]

depends: [
  "ocaml"          {>= "4.03.0"}
  "dune"           {build}
  "fmt"            {with-test}
  "base-bytes"     {with-test}
]
