From cb6075df35e4977c6e5baacffc9c5bb055c5a676 Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Sun, 23 Jun 2024 15:37:23 -0700 Subject: [PATCH] chore: cleanup lower bounds, hpack/syntax.ml (#246) --- dune-project | 2 +- h2-eio.opam | 2 +- hpack/util/dune | 2 ++ hpack/util/syntax.ml | 5 ----- 4 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 hpack/util/syntax.ml diff --git a/dune-project b/dune-project index 90a62aa3..3a0f9d01 100644 --- a/dune-project +++ b/dune-project @@ -134,4 +134,4 @@ (h2 (= :version)) (gluten-eio - (>= "0.4.1")))) + (>= "0.5.0")))) diff --git a/h2-eio.opam b/h2-eio.opam index 0e14099b..eee21a2f 100644 --- a/h2-eio.opam +++ b/h2-eio.opam @@ -12,7 +12,7 @@ depends: [ "dune" {>= "2.7"} "ocaml" {>= "4.08.0"} "h2" {= version} - "gluten-eio" {>= "0.4.1"} + "gluten-eio" {>= "0.5.0"} "odoc" {with-doc} ] build: [ diff --git a/hpack/util/dune b/hpack/util/dune index 335b0b11..336b8df3 100644 --- a/hpack/util/dune +++ b/hpack/util/dune @@ -1,9 +1,11 @@ (executable (name gen_huffman) + (modules gen_huffman) (libraries compiler-libs.common)) (executable (name gen_static) (libraries compiler-libs.common) + (modules gen_static) (enabled_if (< %{ocaml_version} 5.2))) diff --git a/hpack/util/syntax.ml b/hpack/util/syntax.ml deleted file mode 100644 index afee1d2f..00000000 --- a/hpack/util/syntax.ml +++ /dev/null @@ -1,5 +0,0 @@ -open Parsetree -open Ast_helper -open Asttypes - -let strloc txt = { txt; loc = !default_loc }