-
Notifications
You must be signed in to change notification settings - Fork 4
/
dune-project
74 lines (63 loc) · 1.15 KB
/
dune-project
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
(lang dune 2.8)
(name oidc)
(license BSD3)
(source
(github ulrikstrid/ocaml-oidc))
(homepage https://ulrikstrid.github.io/ocaml-oidc)
(documentation https://ulrikstrid.github.io/ocaml-oidc)
(authors "Ulrik Strid")
(maintainers "[email protected]")
(generate_opam_files true)
(package
(version 0.1.1)
(name oidc)
(synopsis "Base package for working with OIDC")
(description "Base functions and types to work with OpenID Connect.")
(depends
(ocaml
(>= 4.08.0))
(dune
(>= 2.5))
(jose
(>= 0.5.1))
uri
yojson
logs
eqaf
(alcotest :with-test)
(junit :with-test)
(junit_alcotest :with-test)
(containers :with-test)
(mirage-crypto
(and
:with-test
(>= "0.8.1")))
(mirage-crypto-rng
(and
:with-test
(>= "0.8.1")))
(mirage-crypto-pk
(and
:with-test
(>= "0.8.1")))))
(package
(version 1.0.0)
(name oidc-client)
(synopsis "OIDC client based on Piaf")
(description
"OpenID Connect Relaying Party implementation built ontop of Piaf.")
(depends
(ocaml
(>= 4.08.0))
(dune
(>= 2.5))
(jose
(>= 0.5.1))
oidc
uri
yojson
logs
piaf))
(package
(version 0.1.0)
(name morph-oidc))