https://github.com/EasyCrypt/easycrypt
Revision 3476312500eca68a89c5b1080e14f263f34d1d63 authored by Pierre-Yves Strub on 19 November 2021, 10:53:40 UTC, committed by Pierre-Yves Strub on 19 November 2021, 10:53:40 UTC
1 parent 08ed0c2
Raw File
Tip revision: 3476312500eca68a89c5b1080e14f263f34d1d63 authored by Pierre-Yves Strub on 19 November 2021, 10:53:40 UTC
script for graphing a dependency graph for .eco
Tip revision: 3476312
ecVersion.ml
(* --------------------------------------------------------------------
 * Copyright (c) - 2012--2016 - IMDEA Software Institute
 * Copyright (c) - 2012--2021 - Inria
 * Copyright (c) - 2012--2021 - Ecole Polytechnique
 *
 * Distributed under the terms of the CeCILL-C-V1 license
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
let copyright = [
  "Copyright (c) - 2012-2016 - IMDEA Software Institute";
  "Copyright (c) - 2012-2021 - Inria";
  "Copyright (c) - 2017-2021 - Ecole Polytechnique";
]

let url  = "https://www.easycrypt.info/"
let app  = "easycrypt"

module License = struct
  let engine = "Distributed under the terms of the CeCILL-C license"
  let stdlib = "Distributed under the terms of the CeCILL-B license"
end

let hash =
  match Build_info.V1.version () with
  | None   -> "n/a"
  | Some v -> Build_info.V1.Version.to_string v
back to top