Skip to content

Commit

Permalink
add upper bound on x509
Browse files Browse the repository at this point in the history
  • Loading branch information
benbellick committed Jan 6, 2025
1 parent 8af5458 commit e9f04a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
ppx_deriving_yojson
(ppx_here :with-test)
(tls :with-test)
(x509 ( >= 0.12.0)) ;; Required for the ~sloppy:true arg becoming the default
(x509 (and (>= 0.12.0) (< 1.0))) ;; Required for the ~sloppy:true arg becoming the default
yojson))

(package
Expand Down
2 changes: 1 addition & 1 deletion gcloud.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ depends: [
"ppx_deriving_yojson"
"ppx_here" {with-test}
"tls" {with-test}
"x509" {>= "0.12.0"}
"x509" {>= "0.12.0" & < "1.0"}
"yojson"
"odoc" {with-doc}
]
Expand Down

0 comments on commit e9f04a7

Please sign in to comment.