Skip to content

Commit c02502e

Browse files
committed
chore(opam): lower bounds
1 parent 1dd22c9 commit c02502e

File tree

9 files changed

+32
-30
lines changed

9 files changed

+32
-30
lines changed

decoders-bencode.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"bencode"
1717
"odoc" {with-doc}
18-
"containers" {with-test}
18+
"containers" {with-test & >= "0.16"}
1919
"ounit" {with-test}
2020
]
2121
build: [

decoders-cbor.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"cbor"
1717
"odoc" {with-doc}
18-
"containers" {with-test}
18+
"containers" {with-test & >= "0.16"}
1919
"ounit" {with-test}
2020
]
2121
build: [

decoders-ezjsonm.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"ezjsonm" {>= "0.4.0"}
1717
"odoc" {with-doc}
18-
"containers" {with-test}
18+
"containers" {with-test & >= "0.16"}
1919
"ounit" {with-test}
2020
]
2121
build: [

decoders-jsonm.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"jsonm"
1717
"odoc" {with-doc}
18-
"containers" {with-test}
18+
"containers" {with-test & >= "0.16"}
1919
"ounit" {with-test}
2020
]
2121
build: [

decoders-msgpck.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1414
depends: [
1515
"ocaml" {>= "4.03.0"}
1616
"dune" {>= "2.0"}
17-
"decoders"
17+
"decoders" {version}
1818
"msgpck"
19+
"ocplib-endian" {>= "0.6"}
1920
"odoc" {with-doc}
20-
"containers" {with-test}
21+
"containers" {with-test & >= "0.16"}
2122
"ounit" {with-test}
2223
]
2324
build: [

decoders-sexplib.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"sexplib0"
1717
"sexplib"
1818
"odoc" {with-doc}
19-
"containers" {with-test}
19+
"containers" {with-test & >= "0.16"}
2020
"ounit" {with-test}
2121
]
2222
build: [

decoders-yojson.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1212
depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
15-
"decoders"
15+
"decoders" {version}
1616
"yojson" {>= "1.6.0"}
1717
"odoc" {with-doc}
18-
"containers" {with-test}
18+
"containers" {with-test & >= "0.16"}
1919
"ounit" {with-test}
2020
]
2121
build: [

decoders.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ depends: [
1313
"ocaml" {>= "4.03.0"}
1414
"dune" {>= "2.0"}
1515
"odoc" {with-doc}
16-
"containers" {with-test}
16+
"containers" {with-test & >= "0.16"}
1717
]
1818
build: [
1919
["dune" "subst"] {pinned}

dune-project

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
(depends
1717
(ocaml (>= 4.03.0))
1818
(dune (>= 2.0))
19-
decoders
19+
(decoders :version)
2020
bencode
2121
(odoc :with-doc)
22-
(containers :with-test)
22+
(containers (and :with-test (>= 0.16)))
2323
(ounit :with-test)))
2424

2525
(package
@@ -30,10 +30,10 @@
3030
(depends
3131
(ocaml (>= 4.03.0))
3232
(dune (>= 2.0))
33-
decoders
33+
(decoders :version)
3434
cbor
3535
(odoc :with-doc)
36-
(containers :with-test)
36+
(containers (and :with-test (>= 0.16)))
3737
(ounit :with-test)))
3838

3939
(package
@@ -44,10 +44,10 @@
4444
(depends
4545
(ocaml (>= 4.03.0))
4646
(dune (>= 2.0))
47-
decoders
47+
(decoders :version)
4848
(ezjsonm (>= 0.4.0))
4949
(odoc :with-doc)
50-
(containers :with-test)
50+
(containers (and :with-test (>= 0.16)))
5151
(ounit :with-test)))
5252

5353
(package
@@ -58,10 +58,10 @@
5858
(depends
5959
(ocaml (>= 4.03.0))
6060
(dune (>= 2.0))
61-
decoders
61+
(decoders :version)
6262
jsonm
6363
(odoc :with-doc)
64-
(containers :with-test)
64+
(containers (and :with-test (>= 0.16)))
6565
(ounit :with-test)))
6666

6767
(package
@@ -73,10 +73,11 @@
7373
(depends
7474
(ocaml (>= 4.03.0))
7575
(dune (>= 2.0))
76-
decoders
76+
(decoders :version)
7777
msgpck
78+
(ocplib-endian (>= 0.6)) ; lower bound missing from msgpck
7879
(odoc :with-doc)
79-
(containers :with-test)
80+
(containers (and :with-test (>= 0.16)))
8081
(ounit :with-test)))
8182

8283
(package
@@ -87,11 +88,11 @@
8788
(depends
8889
(ocaml (>= 4.03.0))
8990
(dune (>= 2.0))
90-
decoders
91+
(decoders :version)
9192
sexplib0
9293
sexplib
9394
(odoc :with-doc)
94-
(containers :with-test)
95+
(containers (and :with-test (>= 0.16)))
9596
(ounit :with-test)))
9697

9798
(package
@@ -102,10 +103,10 @@
102103
(depends
103104
(ocaml (>= 4.03.0))
104105
(dune (>= 2.0))
105-
decoders
106+
(decoders :version)
106107
(yojson (>= 1.6.0))
107108
(odoc :with-doc)
108-
(containers :with-test)
109+
(containers (and :with-test (>= 0.16)))
109110
(ounit :with-test)))
110111

111112
(package
@@ -117,4 +118,4 @@
117118
(ocaml (>= 4.03.0))
118119
(dune (>= 2.0))
119120
(odoc :with-doc)
120-
(containers :with-test)))
121+
(containers (and :with-test (>= 0.16)))))

0 commit comments

Comments
 (0)