Skip to content

Commit d927264

Browse files
committed
Fix opam-dune-lint & pkg deps
1 parent 4e31203 commit d927264

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

crs-dev.opam

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ bug-reports: "https://github.com/mbarbin/crs/issues"
1111
depends: [
1212
"dune" {>= "3.17"}
1313
"ocaml" {>= "5.2"}
14-
"ocamlformat" {with-dev-setup & = "0.27.0"}
14+
"ocamlformat" {= "0.27.0"}
1515
"base" {>= "v0.17"}
16-
"bisect_ppx" {with-dev-setup & >= "2.8.3"}
16+
"base_quickcheck" {>= "v0.17"}
17+
"bisect_ppx" {>= "2.8.3"}
1718
"cmdlang" {>= "0.0.9"}
1819
"conf-git"
1920
"conf-hg"
@@ -37,7 +38,7 @@ depends: [
3738
"ppx_expect" {>= "v0.17"}
3839
"ppx_hash" {>= "v0.17"}
3940
"ppx_here" {>= "v0.17"}
40-
"ppx_js_style" {with-dev-setup & >= "v0.17"}
41+
"ppx_js_style" {>= "v0.17"}
4142
"ppx_let" {>= "v0.17"}
4243
"ppx_sexp_conv" {>= "v0.17"}
4344
"ppx_sexp_value" {>= "v0.17"}

crs-tests.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ depends: [
1212
"ocaml" {>= "5.2"}
1313
"ocamlformat" {= "0.27.0"}
1414
"base" {>= "v0.17"}
15+
"base_quickcheck" {>= "v0.17"}
1516
"cmdlang" {>= "0.0.9"}
1617
"cmdlang-stdlib-runner" {>= "0.0.9"}
1718
"conf-git"

dune-project

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@
9191
(= 0.27.0))
9292
(base
9393
(>= v0.17))
94+
(base_quickcheck
95+
(>= v0.17))
9496
(cmdlang
9597
(>= 0.0.9))
9698
(cmdlang-stdlib-runner
@@ -189,15 +191,13 @@
189191
(ocaml
190192
(>= 5.2))
191193
(ocamlformat
192-
(and
193-
:with-dev-setup
194-
(= 0.27.0)))
194+
(= 0.27.0))
195195
(base
196196
(>= v0.17))
197+
(base_quickcheck
198+
(>= v0.17))
197199
(bisect_ppx
198-
(and
199-
:with-dev-setup
200-
(>= 2.8.3)))
200+
(>= 2.8.3))
201201
(cmdlang
202202
(>= 0.0.9))
203203
conf-git
@@ -243,9 +243,7 @@
243243
(ppx_here
244244
(>= v0.17))
245245
(ppx_js_style
246-
(and
247-
:with-dev-setup
248-
(>= v0.17)))
246+
(>= v0.17))
249247
(ppx_let
250248
(>= v0.17))
251249
(ppx_sexp_conv

0 commit comments

Comments
 (0)