-
Notifications
You must be signed in to change notification settings - Fork 0
/
mec.opam
27 lines (27 loc) · 1018 Bytes
/
mec.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
opam-version: "2.0"
authors: [ "Danny Willems <[email protected]>" ]
maintainer: [ "Danny Willems <[email protected]>" ]
synopsis: "Mec - Modular Experimental Cryptography library"
homepage: "https://github.com/dannywillems/ocaml-ec"
dev-repo: "git+https://github.com/dannywillems/ocaml-ec.git"
bug-reports: "https://github.com/dannywillems/ocaml-ec/issues"
license: "MIT"
depends: [
"ocaml" {>= "4.12"}
"dune" {>= "2.7"}
"zarith" {>= "1.9.1" & < "2.0.0"}
"eqaf"
"bigarray-compat"
"hex" {>= "1.3.0"}
"ff-sig" {>= "0.6.0" & < "0.7.0"}
"ff" {>= "0.6.0" & < "0.7.0"}
"alcotest"
# For digestif, see
# https://github.com/mirage/digestif/blob/344f54f55937df66897995bcea417534ece69ca3/digestif.opam#L44.
# Digestif is forked to add personalisation
# No version constraint upstream, therefore not adding any
"odoc" {with-doc}
"bisect_ppx" { with-test & >= "2.5" }
]
build: [[ "dune" "build" "-j" jobs "-p" name "@install" ]]
run-test: [[ "dune" "runtest" "-p" name "-j" jobs ]]