From 6d7d9b0f9d91329d5e12bc50655e39de373f999a Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Mon, 25 Mar 2019 15:43:22 +0800 Subject: [PATCH 1/2] Support 0.12 version of sexplib - fix #242 --- cstruct-sexp.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cstruct-sexp.opam b/cstruct-sexp.opam index 31c9dc1c..d783d2d6 100644 --- a/cstruct-sexp.opam +++ b/cstruct-sexp.opam @@ -18,7 +18,7 @@ build: [ depends: [ "ocaml" {>= "4.03.0"} "dune" {build & >= "1.0"} - "sexplib" {< "v0.12"} + "sexplib" {< "v0.13"} "cstruct" {>= "3.6.0"} "alcotest" {with-test} ] From eee34ac3c58a00143a6d61bb11c683190cd78a9e Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Mon, 25 Mar 2019 15:52:28 +0800 Subject: [PATCH 2/2] Support Core and Async 0.12 --- cstruct-async.opam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cstruct-async.opam b/cstruct-async.opam index ff126747..3c861a17 100644 --- a/cstruct-async.opam +++ b/cstruct-async.opam @@ -16,9 +16,9 @@ build: [ depends: [ "ocaml" {>= "4.03.0"} "dune" {build & >= "1.0"} - "async_kernel" {>= "v0.9.0" & < "v0.12"} - "async_unix" {>= "v0.9.0" & < "v0.12"} - "core_kernel" {>= "v0.9.0" & < "v0.12"} + "async_kernel" {>= "v0.9.0" & < "v0.13"} + "async_unix" {>= "v0.9.0" & < "v0.13"} + "core_kernel" {>= "v0.9.0" & < "v0.13"} "cstruct" {=version} ] synopsis: "Access C-like structures directly from OCaml"