Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yojson 2 constraints #21475

Merged
merged 35 commits into from
Jun 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
8050338
Add Yojson constraints to revdeps that fail to build with `yojson.2.0.0`
Leonidas-from-XIV Jun 6, 2022
ba9fe6e
Fix minimum constraint of json_decoder
Leonidas-from-XIV Jun 6, 2022
9c9e91b
Fix minimum dune constraints on `docker-api`
Leonidas-from-XIV Jun 6, 2022
bc971b8
Fix minimum dune constraint on `graphql.0.9.0`
Leonidas-from-XIV Jun 6, 2022
e65a5ca
Support for `package` in `alias` was added in `jbuilder.1.0+beta9`
Leonidas-from-XIV Jun 6, 2022
f358428
`CCResult` was added in `containers.0.16`
Leonidas-from-XIV Jun 6, 2022
50efd64
`package` was added in `jbuilder.1.0+beta9`
Leonidas-from-XIV Jun 6, 2022
4a2b9cf
`BaseCompat` was added in `oasis.0.4.7`
Leonidas-from-XIV Jun 6, 2022
cccccc3
`>>=` was added to `Rresult` in 0.2.0
Leonidas-from-XIV Jun 6, 2022
b7191a0
Minimum dune version is 1.3
Leonidas-from-XIV Jun 6, 2022
657dd03
CCResult.result only exists since 1.5
Leonidas-from-XIV Jun 6, 2022
7f65835
`rresult.0.3.0` is required for a compatible `result` type
Leonidas-from-XIV Jun 6, 2022
da93df0
`Decoders_util` exists since `decoders.0.3.0`
Leonidas-from-XIV Jun 6, 2022
89c2ce9
Containers 2.8 is required for CCResult.result before OCaml 4.08
Leonidas-from-XIV Jun 6, 2022
b683432
`Pbrt_json` was added in `ocaml-protoc.1.0.0`
Leonidas-from-XIV Jun 6, 2022
59f68f0
ppx_deriving must be in a version supported by dune
Leonidas-from-XIV Jun 6, 2022
d8ffb97
`Re.Seq` was added in `re.1.9.0`
Leonidas-from-XIV Jun 6, 2022
1ca1e19
`Mybuild.Version.save` requires `mybuild.4`
Leonidas-from-XIV Jun 6, 2022
7f900d8
`String.equal` requires `extlib.1.7.1`
Leonidas-from-XIV Jun 7, 2022
c36e8ca
`copy_files` was added in `jbuilder.1.0+beta14`
Leonidas-from-XIV Jun 7, 2022
bd4a8e7
`--infer-write-query` should be available in Menhir since 2018/05/23
Leonidas-from-XIV Jun 7, 2022
4dfe22e
`re` is not just a test dependency, also used in main code
Leonidas-from-XIV Jun 7, 2022
8fc03f0
`obus` requires newer menhir for `--infer-write-query`
Leonidas-from-XIV Jun 7, 2022
7f85487
`field_opt` requires `decoders.0.2.0`
Leonidas-from-XIV Jun 7, 2022
2cbc76c
`array` is only available starting `decoders.0.6.0`
Leonidas-from-XIV Jun 7, 2022
ba6ccad
`bencode` takes Integers as `int64` since version 2.0
Leonidas-from-XIV Jun 7, 2022
8267a50
`EndianBytes` was only added in `ocplib-endian.0.6`
Leonidas-from-XIV Jun 7, 2022
ed254e1
`ppx_deriving.4.2` started using `omp` so maybe works better with `sexp`
Leonidas-from-XIV Jun 7, 2022
d7397a6
`ppxfind` uses `-opaque` on `ocamlc` which is available since 4.04
Leonidas-from-XIV Jun 7, 2022
ec1a13b
`Msgpck.pp` exists since `msgpck.1.3`
Leonidas-from-XIV Jun 7, 2022
3c4e285
`Lwt.bind` only returns a promise since `lwt.3.0.0`
Leonidas-from-XIV Jun 7, 2022
bdacc58
`lwt_log.1.0.0` does not install META files, try newer version
Leonidas-from-XIV Jun 7, 2022
8eebdd2
`Option.try_with_join` was added in JST v0.14
Leonidas-from-XIV Jun 7, 2022
3615e37
Avoid `ocamlbuild.0.9.0` to avoid failing to build C stubs
Leonidas-from-XIV Jun 7, 2022
c3c82a9
Lwt_log was moved to separate library in Lwt 4
Leonidas-from-XIV Jun 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/0install/0install.2.15.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build: [
]
depends: [
"ocaml" {>= "4.05.0"}
"yojson"
"yojson" {< "2.0.0"}
"xmlm"
"ounit" {with-test}
"lwt"
Expand Down
2 changes: 1 addition & 1 deletion packages/0install/0install.2.15.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build: [
]
depends: [
"ocaml" {>= "4.05.0"}
"yojson"
"yojson" {< "2.0.0"}
"xmlm"
"ounit" {with-test}
"lwt"
Expand Down
2 changes: 1 addition & 1 deletion packages/0install/0install.2.16/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build: [
]
depends: [
"ocaml" {>= "4.05.0"}
"yojson"
"yojson" {< "2.0.0"}
"xmlm"
"ounit" {with-test}
"lwt"
Expand Down
2 changes: 1 addition & 1 deletion packages/0install/0install.2.17/opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build: [
depends: [
"ocaml" {>= "4.08.0"}
"0install-solver"
"yojson"
"yojson" {< "2.0.0"}
"xmlm"
"ounit2" {with-test}
"lwt"
Expand Down
4 changes: 2 additions & 2 deletions packages/KaSim/KaSim.4.0.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ depends: [
"num"
"ocamlfind"
"ocamlbuild" {build}
"yojson" {>= "1.1.3"}
"lwt"
"yojson" {>= "1.1.3" & < "2.0.0"}
"lwt" {< "4.0.0"}
]
depopts: [
"labltk" "cohttp-lwt-unix"
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen-runtime/atdgen-runtime.2.8.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bug-reports: "https://github.com/ahrefs/atd/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.08"}
"yojson" {>= "1.7.0"}
"yojson" {>= "1.7.0" & < "2.0.0"}
"biniou" {>= "1.0.6"}
"camlp-streams"
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.1.10.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ depends: [
"ocamlfind"
"atd" {>= "1.2.0" & < "1.13.0"}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.2.1"}
"yojson" {>= "1.2.1" & < "2.0.0"}
]
synopsis:
"Generates efficient JSON serializers, deserializers and validators"
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.1.10.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"jbuilder" {>= "1.0+beta7"}
"atd" {>= "1.2.0" & < "1.13.0"}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.2.1"}
"yojson" {>= "1.2.1" & < "2.0.0"}
]
conflicts: [
"dune" {>= "1.10"}
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.1.12.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"jbuilder" {>= "1.0+beta7"}
"atd" {>= "1.2.0" & < "1.13.0"}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.2.1"}
"yojson" {>= "1.2.1" & < "2.0.0"}
]
synopsis:
"Generates efficient JSON serializers, deserializers and validators"
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.1.9.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ depends: [
"ocamlfind"
"atd" {>= "1.1.0" & < "1.13.0"}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.2.1"}
"yojson" {>= "1.2.1" & < "2.0.0"}
]
synopsis:
"Generates efficient JSON serializers, deserializers and validators"
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.1.9.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ depends: [
"ocamlfind"
"atd" {>= "1.1.0" & < "1.13.0"}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.2.1"}
"yojson" {>= "1.2.1" & < "2.0.0"}
]
synopsis:
"Generates efficient JSON serializers, deserializers and validators"
Expand Down
2 changes: 1 addition & 1 deletion packages/atdgen/atdgen.2.8.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ depends: [
"atdgen-runtime" {>= "2.1.0"}
"atdgen-codec-runtime" {with-test}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.7.0"}
"yojson" {>= "1.7.0" & < "2.0.0"}
"odoc" {with-doc}
"re"
]
Expand Down
2 changes: 1 addition & 1 deletion packages/bitcoin/bitcoin.1.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build: [
remove: [[make "uninstall"]]
depends: [
"ocaml"
"yojson"
"yojson" {< "2.0.0"}
"ocamlnet" {< "4"}
"ocsigenserver"
"ocamlbuild" {build}
Expand Down
2 changes: 1 addition & 1 deletion packages/bitcoin/bitcoin.1.1.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build: [
remove: [["ocamlfind" "remove" "bitcoin"]]
depends: [
"ocaml"
"yojson"
"yojson" {< "2.0.0"}
"ocamlnet" {< "4"}
"ocamlbuild" {build}
]
Expand Down
2 changes: 1 addition & 1 deletion packages/bitcoin/bitcoin.1.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build: [
remove: [["ocamlfind" "remove" "bitcoin"]]
depends: [
"ocaml"
"yojson"
"yojson" {< "2.0.0"}
"ocamlnet" {< "4"}
"ocamlbuild" {build}
]
Expand Down
2 changes: 1 addition & 1 deletion packages/bitcoin/bitcoin.2.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ install: [[make "install"]]
remove: [["ocamlfind" "remove" "bitcoin"]]
depends: [
"ocaml"
"yojson"
"yojson" {< "2.0.0"}
"cryptokit"
"ocamlbuild" {build}
]
Expand Down
4 changes: 2 additions & 2 deletions packages/cbor/cbor.0.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ depends: [
"ocamlfind" {build}
"base-bytes"
"ocplib-endian" {>= "0.6"}
"oasis" {>= "0.4.0"}
"oasis" {>= "0.4.7"}
"ocamlbuild" {build}
"yojson" {with-test}
"yojson" {with-test & < "2.0.0"}
]
synopsis: "CBOR encoder/decoder (RFC 7049) - native OCaml implementation"
description: """
Expand Down
1 change: 1 addition & 0 deletions packages/cconv/cconv.0.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ depopts: [
]
conflicts: [
"bencode" {>= "2.0"}
"yojson" {>= "2.0.0"}
]
tags: ["conversion" "gadt" "serialization"]
homepage: "https://github.com/c-cube/cconv/"
Expand Down
1 change: 1 addition & 0 deletions packages/cconv/cconv.0.3.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ conflicts: [
"bencode" {>= "2.0"}
"ppx_deriving" {< "2.0" | >= "5.0"}
"ppx_deriving" { >= "3.3" }
"yojson" {>= "2.0.0"}
]
dev-repo: "git+https://github.com/c-cube/cconv.git"
bug-reports: "https://github.com/c-cube/cconv/issues/"
Expand Down
1 change: 1 addition & 0 deletions packages/cconv/cconv.0.3/opam
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ conflicts: [
"bencode" {>= "2.0"}
"ppx_deriving" {< "2.0" | >= "5.0"}
"ppx_deriving" { >= "3.3" }
"yojson" {>= "2.0.0"}
]
dev-repo: "git+https://github.com/c-cube/cconv.git"
bug-reports: "https://github.com/c-cube/cconv/issues/"
Expand Down
1 change: 1 addition & 0 deletions packages/cconv/cconv.0.4/opam
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ depopts: [
conflicts: [
"bencode" {>= "2.0"}
"ppx_deriving" {< "2.0" | >= "5.0"}
"yojson" {>= "2.0.0"}
]
synopsis:
"Combinators for Type Conversion in OCaml, and ppx_deriving plugin."
Expand Down
1 change: 1 addition & 0 deletions packages/cconv/cconv.0.5/opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ depopts: [
]
conflicts: [
"bencode" {>= "2.0"}
"yojson" {>= "2.0.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
install: [make "install"]
synopsis: "access C structures via a camlp4 extension"
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.4.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
install: [make "install"]
synopsis: "access C structures via a camlp4 extension"
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.5.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
install: [make "install"]
synopsis: "access C structures via a camlp4 extension"
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.5.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
install: [make "install"]
synopsis: "access C structures via a camlp4 extension"
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.5.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
dev-repo: "git+https://github.com/mirage/ocaml-cstruct"
install: [make "install"]
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.5.3/opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depends: [
"ocaml" {< "4.06.0"}
"ocamlfind"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
dev-repo: "git+https://github.com/mirage/ocaml-cstruct"
install: [make "install"]
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.6.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"ocamlfind"
"ocplib-endian"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
dev-repo: "git+https://github.com/mirage/ocaml-cstruct"
install: [make "install"]
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.6.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"ocamlfind"
"ocplib-endian"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
dev-repo: "git+https://github.com/mirage/ocaml-cstruct"
install: [make "install"]
Expand Down
2 changes: 1 addition & 1 deletion packages/cstruct/cstruct.0.6.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"ocamlfind"
"ocplib-endian"
"camlp4"
"ocamlbuild" {build}
"ocamlbuild" {build & != "0.9.0"}
]
dev-repo: "git+https://github.com/mirage/ocaml-cstruct"
install: [make "install"]
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-bencode/decoders-bencode.0.3.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"decoders" {>= "0.3.0"}
"bencode" {< "2.0"}
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
Expand Down
4 changes: 2 additions & 2 deletions packages/decoders-bencode/decoders-bencode.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"bencode"
"decoders" {>= "0.3.0"}
"bencode" {>= "2.0"}
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
]
Expand Down
4 changes: 2 additions & 2 deletions packages/decoders-bencode/decoders-bencode.0.5.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"decoders"
"bencode"
"decoders" {>= "0.3.0"}
"bencode" {>= "2.0"}
"odoc" {with-doc}
"containers" {with-test}
"ounit" {with-test}
Expand Down
4 changes: 2 additions & 2 deletions packages/decoders-bencode/decoders-bencode.0.6.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"decoders"
"bencode"
"decoders" {>= "0.3.0"}
"bencode" {>= "2.0"}
"odoc" {with-doc}
"containers" {with-test}
"ounit" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-cbor/decoders-cbor.0.3.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"decoders" {>= "0.3.0"}
"cbor"
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-cbor/decoders-cbor.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"decoders" {>= "0.3.0"}
"cbor"
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-cbor/decoders-cbor.0.5.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"decoders"
"decoders" {>= "0.3.0"}
"cbor"
"odoc" {with-doc}
"containers" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-cbor/decoders-cbor.0.6.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"decoders"
"decoders" {>= "0.3.0"}
"cbor"
"odoc" {with-doc}
"containers" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-ezjsonm/decoders-ezjsonm.0.2.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ depends: [
"ocaml"
"dune"
"ounit" {with-test}
"decoders" {< "0.3.0"}
"decoders" {>= "0.2.0" & < "0.3.0"}
"ezjsonm" {>= "0.4.0"}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-ezjsonm/decoders-ezjsonm.0.3.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"decoders" {>= "0.3.0"}
"ezjsonm" {>= "0.4.0"}
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-ezjsonm/decoders-ezjsonm.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ depends: [
"dune" {>= "1.0"}
"ounit" {with-test}
"containers" {with-test}
"decoders"
"decoders" {>= "0.3.0"}
"ezjsonm" {>= "0.4.0"}
"odoc" {with-doc}
"ocaml" { >= "4.03.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/decoders-ezjsonm/decoders-ezjsonm.0.5.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"decoders"
"decoders" {>= "0.3.0"}
"ezjsonm" {>= "0.4.0"}
"odoc" {with-doc}
"containers" {with-test}
Expand Down
Loading