this repo has no description

constraint fixes

Minor constraint fixes to reflect vendored package errors

Changed files
+7 -4
vendor
void
+2 -2
dune-project
···
(synopsis "Shelter from the Storm")
(description "A shell session shim to help you explore!")
(depends
-
ocaml
eio_posix
-
void
zfs
cid
ppx_repr
···
(synopsis "Shelter from the Storm")
(description "A shell session shim to help you explore!")
(depends
+
(ocaml (< "5.3.0~~")) ; for the irmin pin only
+
(ctypes (< "0.23.0")) ; for a const ptr mismatch with zfs from https://github.com/yallop/ocaml-ctypes/pull/782
eio_posix
zfs
cid
ppx_repr
+2 -2
shelter.opam
···
bug-reports: "https://github.com/username/reponame/issues"
depends: [
"dune" {>= "3.17"}
-
"ocaml"
"eio_posix"
-
"void"
"zfs"
"cid"
"ppx_repr"
···
bug-reports: "https://github.com/username/reponame/issues"
depends: [
"dune" {>= "3.17"}
+
"ocaml" {< "5.3.0~~"}
+
"ctypes" {< "0.23.0"}
"eio_posix"
"zfs"
"cid"
"ppx_repr"
+3
vendor/void/src/void_action.c
···
#include <string.h>
#include <caml/mlvalues.h>
#include <caml/unixsupport.h>
#include <caml/memory.h>
#include <caml/custom.h>
#include <caml/fail.h>
// From Eio
#include <include/fork_action.h>
···
#include <string.h>
+
#define CAML_INTERNALS
#include <caml/mlvalues.h>
#include <caml/unixsupport.h>
#include <caml/memory.h>
#include <caml/custom.h>
+
#include <caml/signals.h>
#include <caml/fail.h>
+
#undef CAML_INTERNALS
// From Eio
#include <include/fork_action.h>