Skip to content

Commit

Permalink
Missing dependency lower bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Jul 22, 2024
1 parent 7167781 commit b10009f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cudajit.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ homepage: "https://github.com/lukstafi/ocaml-cudajit"
doc: "https://github.com/lukstafi/ocaml-cudajit/blob/master/README.md"
bug-reports: "https://github.com/lukstafi/ocaml-cudajit/issues"
depends: [
"ocaml"
"ocaml" {>= "4.08"}
"dune" {>= "3.11"}
"ctypes"
"ctypes" {>= "0.14.0"}
"ctypes-foreign"
"sexplib0"
"ppx_sexp_conv"
Expand Down
6 changes: 4 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
(description
"Bindings to manually selected parts of `lcuda` and `lnvrtc`, with a few types and conversion functions to facilitate use.")
(depends
ocaml
(ocaml
(>= 4.08))
dune
ctypes
(ctypes
(>= 0.14.0))
ctypes-foreign
sexplib0
ppx_sexp_conv
Expand Down

0 comments on commit b10009f

Please sign in to comment.