upstream: github.com/mirage/ca-certs
0
fork

Configure Feed

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

Merge pull request #33 from hannesm/fix-ci

fix CI (add bounds to x509 and mirage-crypto)

authored by

Hannes Mehnert and committed by
GitHub
9e7b6f39 2bcc1837

+5 -4
+2 -2
ca-certs.opam
··· 20 20 "fpath" 21 21 "ptime" 22 22 "logs" 23 - "mirage-crypto" 24 - "x509" {>= "0.13.0"} 23 + "mirage-crypto" {< "1.0.0"} 24 + "x509" {>= "0.13.0" & < "1.0.0"} 25 25 "ocaml" {>= "4.08.0"} 26 26 "alcotest" {with-test} 27 27 "fmt" {with-test & >= "0.8.7"}
+3 -2
dune-project
··· 11 11 (package 12 12 (name ca-certs) 13 13 (depends 14 - bos fpath ptime logs mirage-crypto 15 - (x509 (>= 0.13.0)) 14 + bos fpath ptime logs 15 + (mirage-crypto (< 1.0.0)) 16 + (x509 (and (>= 0.13.0) (< 1.0.0))) 16 17 (ocaml (>= 4.08.0)) 17 18 (alcotest :with-test) 18 19 (fmt (and :with-test (>= 0.8.7))))