this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #18272 from emillon/release-ca-certs-v0.2.0

[new release] ca-certs (0.2.0)

authored by

Kate and committed by
GitHub
40bfbc6e 502ab453

+56
+56
packages/ca-certs/ca-certs.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Detect root CA certificates from the operating system" 3 + description: """ 4 + TLS requires a set of root anchors (Certificate Authorities) to 5 + authenticate servers. This library exposes this list so that it can be 6 + registered with ocaml-tls. 7 + """ 8 + maintainer: ["Etienne Millon <me@emillon.org>"] 9 + authors: [ 10 + "Etienne Millon <me@emillon.org>, Hannes Mehnert <hannes@mehnert.org>" 11 + ] 12 + license: "ISC" 13 + homepage: "https://github.com/mirage/ca-certs" 14 + doc: "https://mirage.github.io/ca-certs/doc" 15 + bug-reports: "https://github.com/mirage/ca-certs/issues" 16 + depends: [ 17 + "dune" {>= "2.0"} 18 + "astring" 19 + "bos" 20 + "fpath" 21 + "rresult" 22 + "ptime" 23 + "logs" 24 + "mirage-crypto" 25 + "x509" {>= "0.11.0"} 26 + "ocaml" {>= "4.07.0"} 27 + "alcotest" {with-test} 28 + ] 29 + dev-repo: "git+https://github.com/mirage/ca-certs.git" 30 + build: [ 31 + ["dune" "subst"] {pinned} 32 + [ 33 + "dune" 34 + "build" 35 + "-p" 36 + name 37 + "-j" 38 + jobs 39 + "@install" 40 + "@runtest" {with-test & os != "macos"} # the opam sandbox on macos leads to test failures (ocaml/opam#4389) 41 + "@doc" {with-doc} 42 + ] 43 + ] 44 + tags: ["org:mirage"] 45 + depexts: [ 46 + ["ca_root_nss"] {os = "freebsd"} 47 + ] 48 + x-commit-hash: "9d1350b5b62969387dddf12786c26d4476597423" 49 + url { 50 + src: 51 + "https://github.com/mirage/ca-certs/releases/download/v0.2.0/ca-certs-v0.2.0.tbz" 52 + checksum: [ 53 + "sha256=c8a07eabeb90b58624bd3b77f1510a454d0a236e311fedb4044943b57f594e96" 54 + "sha512=759bb7db1041e5cfc8076abb9620ffcd8de29e5662690acb3f11f3e41221633796f6645535b6d232cf1c2be8e353e99b6037a96a6ed363eacaf508409740bcc9" 55 + ] 56 + }