Skip to content

Commit

Permalink
Merge pull request #33 from hannesm/fix-ci
Browse files Browse the repository at this point in the history
fix CI (add bounds to x509 and mirage-crypto)
  • Loading branch information
hannesm authored Aug 5, 2024
2 parents c1cc430 + af15649 commit d616b99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ca-certs.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ depends: [
"fpath"
"ptime"
"logs"
"mirage-crypto"
"x509" {>= "0.13.0"}
"mirage-crypto" {< "1.0.0"}
"x509" {>= "0.13.0" & < "1.0.0"}
"ocaml" {>= "4.08.0"}
"alcotest" {with-test}
"fmt" {with-test & >= "0.8.7"}
Expand Down
5 changes: 3 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
(package
(name ca-certs)
(depends
bos fpath ptime logs mirage-crypto
(x509 (>= 0.13.0))
bos fpath ptime logs
(mirage-crypto (< 1.0.0))
(x509 (and (>= 0.13.0) (< 1.0.0)))
(ocaml (>= 4.08.0))
(alcotest :with-test)
(fmt (and :with-test (>= 0.8.7))))
Expand Down

0 comments on commit d616b99

Please sign in to comment.