Skip to content

Commit

Permalink
require v0.16.0 or newer
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-emrich committed Oct 18, 2023
1 parent 20919f9 commit 6d38f7a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion lens/column.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ module Type = Phrase_type

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
table : string;
Expand Down
3 changes: 2 additions & 1 deletion lens/database.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module LPV = Phrase_value

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
serialize : unit -> string;
Expand Down
3 changes: 2 additions & 1 deletion lens/sort.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module Column = Column

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
fds : Fun_dep.Set.t;
Expand Down
3 changes: 2 additions & 1 deletion lens/value.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ open Lens_utility

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t =
| Lens of { table : Database.Table.t; sort : Sort.t }
Expand Down
2 changes: 1 addition & 1 deletion links.opam
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ depends: [
"result"
"ocamlfind"
"menhir" {>= "20210419"}
"ppx_sexp_conv"
"ppx_sexp_conv" {>= "v0.16.0"}
"calendar" {>= "2.0.4"}
"rdf_lwt" {>= "0.13.0"}
]

0 comments on commit 6d38f7a

Please sign in to comment.