-
Notifications
You must be signed in to change notification settings - Fork 4
/
jose.opam
49 lines (49 loc) · 1.17 KB
/
jose.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "JOSE implementation for OCaml and ReasonML"
description:
"JavaScript Object Signing and Encryption built ontop of pure OCaml libs"
maintainer: [
"Ulrik Strid <[email protected]>"
"Antonio Nuno Monteiro <[email protected]>"
]
authors: ["Ulrik Strid"]
license: "MIT"
homepage: "https://ulrikstrid.github.io/reason-jose"
doc: "https://ulrikstrid.github.io/reason-jose"
bug-reports: "https://github.com/ulrikstrid/reason-jose/issues"
depends: [
"ocaml" {>= "4.08.0"}
"base64" {>= "3.3.0"}
"dune" {>= "2.8"}
"eqaf" {>= "0.7"}
"mirage-crypto" {>= "0.10.0"}
"x509" {>= "0.13.0"}
"cstruct" {>= "6.0.0"}
"astring"
"yojson" {>= "1.6.0"}
"zarith"
"ptime"
"mirage-crypto-rng" {with-test & >= "0.11.0"}
"containers" {with-test}
"bisect_ppx" {with-test}
"alcotest" {with-test}
"junit" {with-test}
"junit_alcotest" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ulrikstrid/reason-jose.git"