https://github.com/EasyCrypt/easycrypt
Revision 95cabb9d36aa7e57117c9d0b4c1b3074e029bf8e authored by François Dupressoir on 04 August 2023, 10:31:26 UTC, committed by Francois Dupressoir on 07 August 2023, 17:56:12 UTC
there is currently no way of asking for a report with 'easycrypt runtest'
1 parent da3be5c
Raw File
Tip revision: 95cabb9d36aa7e57117c9d0b4c1b3074e029bf8e authored by François Dupressoir on 04 August 2023, 10:31:26 UTC
add support for test config 'report' option
Tip revision: 95cabb9
easycrypt.opam
# This file is generated by dune, edit dune-project instead
depends: [
  "ocaml" {>= "4.08.0"}
  "batteries" {>= "3"}
  "camlp-streams" {>= "5"}
  "camlzip"
  "dune" {>= "3.6" & >= "3.6"}
  "dune-build-info"
  "dune-site"
  "ocaml-inifiles" {>= "1.2"}
  "pcre" {>= "7"}
  "why3" {>= "1.6.0" & < "1.7"}
  "yojson"
  "zarith" {>= "1.10"}
  "odoc" {with-doc}
]
opam-version: "2.0"

homepage: "https://www.easycrypt.info/"
bug-reports: "https://www.easycrypt.info/trac/newticket"
dev-repo: "git+https://github.com/EasyCrypt/easycrypt.git"
authors: "EasyCrypt Development Team <team@easycrypt.info>"
maintainer: "pierre-yves@strub.nu"
license: "CeCILL-C"

synopsis: "EasyCrypt: Computer-Aided Cryptographic Proofs"
description: """
EasyCrypt is a toolset for reasoning about relational properties
of probabilistic computations with adversarial code. Its main
application is the construction and verification of game-based
cryptographic proofs."""

post-messages: """
EasyCrypt needs external provers to be installed. From opam, you
can install AltErgo (package: alt-ergo).

The required steps for configuring the provers are listed on:
  https://github.com/EasyCrypt/easycrypt#configuring-why3"""

build: [
  ["dune" "subst"]
  ["dune" "build" "-p" name "-j" jobs "@install"]
]
back to top