forked from robur-coop/conex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconex-mirage-crypto.opam
More file actions
40 lines (39 loc) · 1.25 KB
/
conex-mirage-crypto.opam
File metadata and controls
40 lines (39 loc) · 1.25 KB
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
36
37
38
39
40
opam-version: "2.0"
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
authors: "Hannes Mehnert <hannes@mehnert.org>"
license: "BSD2"
homepage: "https://github.com/robur-coop/conex"
doc: "https://robur-coop.github.io/conex/doc"
bug-reports: "https://github.com/robur-coop/conex/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7"}
"alcotest" {with-test}
# "bisect_ppx" {dev & >= "2.5.0"} #until they support cmdliner >= 2
"cmdliner" {>= "1.1.0"}
"conex" {= version}
"mirage-crypto-pk" {>= "1.0.0"}
"mirage-crypto-ec" {>= "1.0.0"}
"mirage-crypto-rng" {>= "1.2.0"}
"x509" {>= "1.0.0"}
"logs"
"fmt"
"ptime"
"base64" {>= "3.4.0"}
"digestif" {>= "1.2.0"}
"conf-openssl" {with-test}
]
conflicts: [ "result" {< "1.5"} ]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/robur-coop/conex.git"
synopsis: "Establishing trust in community repositories: crypto provided via mirage-crypto"
description: """
Conex is a system based on [TUF](https://theupdateframework.github.io/) to
establish trust in community repositories. Since opam2, the required hooks
are present.
This package uses the crypto primitives provided by mirage-crypto.
"""