Skip to content

Commit 88268c8

Browse files
authored
Merge pull request #23 from kit-ty-kate/500
Add support for OCaml 5.00
2 parents d647ed7 + a3f82fb commit 88268c8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bin_prot.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build: [
1111
["dune" "build" "-p" name "-j" jobs]
1212
]
1313
depends: [
14-
"ocaml" {>= "4.04.2"}
14+
"ocaml" {>= "4.08.0"}
1515
"base" {>= "v0.14" & < "v0.15"}
1616
"ppx_compare" {>= "v0.14" & < "v0.15"}
1717
"ppx_custom_printf" {>= "v0.14" & < "v0.15"}

src/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(library (name bin_prot)
2-
(libraries bigarray bin_shape_lib base.md5 base base.caml)
2+
(libraries bin_shape_lib base.md5 base base.caml)
33
(public_name bin_prot) (c_names blit_stubs)
44
(preprocess (pps ppx_sexp_conv ppx_compare ppx_optcomp))
5-
(js_of_ocaml (javascript_files runtime.js)))
5+
(js_of_ocaml (javascript_files runtime.js)))

xen/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
(action (bash "./%{first_dep} > %{targets}")))
33

44
(library (name bin_prot_xen) (public_name bin_prot.xen) (optional)
5-
(virtual_deps mirage-xen-ocaml) (libraries bigarray)
6-
(c_flags (:include cflags.sexp)) (preprocess no_preprocessing))
5+
(virtual_deps mirage-xen-ocaml)
6+
(c_flags (:include cflags.sexp)) (preprocess no_preprocessing))

0 commit comments

Comments
 (0)