-
Notifications
You must be signed in to change notification settings - Fork 13
/
dune-project
31 lines (29 loc) · 944 Bytes
/
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
(lang dune 2.0)
(name ca-certs)
(generate_opam_files true)
(source (github mirage/ca-certs))
(documentation "https://mirage.github.io/ca-certs/doc")
(license ISC)
(maintainers "Etienne Millon <[email protected]>")
(authors "Etienne Millon <[email protected]>, Hannes Mehnert <[email protected]>")
(package
(name ca-certs)
(depends
bos fpath ptime logs
(digestif (>= 1.2.0))
(mirage-crypto (>= 1.0.0))
(x509 (>= 1.0.0))
(ocaml (>= 4.13.0))
(ohex (>= 0.2.0))
(alcotest :with-test)
(fmt (and :with-test (>= 0.8.7))))
(conflicts (result (< 1.5)))
(synopsis "Detect root CA certificates from the operating system")
(description
"\> TLS requires a set of root anchors (Certificate Authorities) to
"\> authenticate servers. This library exposes this list so that it can be
"\> registered with ocaml-tls.
)
; tags are not included before (lang dune 2.0)
; so an opam template is necessary until then
(tags (org:mirage)))