forked from emillon/hacl-star-dune
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhacl-star.opam
35 lines (35 loc) · 895 Bytes
/
hacl-star.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
28
29
30
31
32
33
34
35
opam-version: "2.0"
name: "hacl-star"
version: "0.4.5"
synopsis: "OCaml API for EverCrypt/HACL*"
description: """
Documentation for this library can be found
[here](https://hacl-star.github.io/ocaml_doc/hacl-star/index.html).
"""
maintainer: "Victor Dumitrescu <victor.dumitrescu@nomadic-labs.com>"
authors: [ "Project Everest" ]
license: "Apache-2.0"
homepage: "https://hacl-star.github.io/"
doc: "https://hacl-star.github.io/ocaml_doc"
bug-reports: "https://github.com/project-everest/hacl-star/issues"
depends: [
"ocaml" { >= "4.08.0" }
"dune" {>= "2.6"}
"hacl-star-raw" {= version}
"zarith"
"cppo" {build}
"odoc" {with-doc}
]
available: [
os = "freebsd" | os-family != "bsd"
]
build: [
[
"dune" "build" "-p" name "-j" jobs
"@doc" {with-doc}
]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
dev-repo: "git+https://github.com/project-everest/hacl-star.git"