upstream: github.com/mirleft/ocaml-x509
0
fork

Configure Feed

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

opam: migrate 14 hand-maintained packages to dune-generated

Moves package metadata into dune-project for kdf, monopam-info,
ocaml-ax25, ocaml-collision, ocaml-crypto (4 subpackages), ocaml-csv,
ocaml-respond, ocaml-sdnv, ocaml-tls (2 subpackages), ocaml-vec3, and
ocaml-x509, and flags each .opam with the generated-by-dune header.

Running dune build after the ocaml-toml build break is resolved will
regenerate the .opam files from dune-project and reveal any
canonical-form drift in a separate commit.

+35
+34
dune-project
··· 1 1 (lang dune 3.21) 2 2 (name x509) 3 3 (source (tangled gazagnaire.org/ocaml-x509)) 4 + (license BSD-2-Clause) 5 + (authors 6 + "Hannes Mehnert <hannes@mehnert.org>" 7 + "David Kaloper <dk505@cam.ac.uk>") 8 + (maintainers "Hannes Mehnert <hannes@mehnert.org>") 9 + 10 + (generate_opam_files true) 11 + 12 + (package 13 + (name x509) 14 + (synopsis "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml") 15 + (description 16 + "X.509 is a public key infrastructure used mostly on the Internet. Certificates include public keys and identifiers signed by an authority. This library implements most parts of RFC5280 and RFC6125, plus PKCS 1, 5, 7, 8, 9, 10, and 12 encoding/decoding in ASN.1 DER and PEM format.") 17 + (tags (org:blacksun org:mirage crypto network)) 18 + (depends 19 + (ocaml (>= 4.13.0)) 20 + (dune (>= 2.0)) 21 + (asn1-combinators (>= 0.3.1)) 22 + ptime 23 + (base64 (>= 3.3.0)) 24 + (crypto (>= 1.0.0)) 25 + crypto-pk 26 + (crypto-ec (>= 0.10.7)) 27 + crypto-rng 28 + (crypto-rng (and :with-test (>= 1.2.0))) 29 + (fmt (>= 0.8.7)) 30 + (alcotest :with-test) 31 + (gmap (>= 0.3.0)) 32 + (domain-name (>= 0.3.0)) 33 + logs 34 + (kdf (>= 1.0.0)) 35 + (ohex (>= 0.2.0)) 36 + (ipaddr (>= 5.2.0))) 37 + (conflicts (result (< 1.5))))
+1
x509.opam
··· 1 + # This file is generated by dune, edit dune-project instead 1 2 opam-version: "2.0" 2 3 maintainer: [ 3 4 "Hannes Mehnert <hannes@mehnert.org>"