Skip to content

Commit

Permalink
Merge pull request #44 from mbarbin/add-implicit-transitive-deps
Browse files Browse the repository at this point in the history
Add missing transitive dependencies
  • Loading branch information
mbarbin authored Dec 16, 2024
2 parents 09e7bf9 + 956d053 commit 72d582a
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
(public_name ocaml-vcs)
(package vcs-command)
(flags :standard -w +a-4-40-41-42-44-45-48-66 -warn-error +a)
(libraries cmdlang-cmdliner-runner pp-log.err vcs-command)
(libraries cmdlang-cmdliner-runner pp-log.err vcs vcs-command)
(instrumentation
(backend bisect_ppx)))
6 changes: 6 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
(depends
(ocaml
(>= 5.2))
(astring
(>= 0.8.5))
(fpath
(>= 0.7.3))
(fpath-sexp0
Expand Down Expand Up @@ -156,6 +158,8 @@
(< v0.18)))
(ppxlib
(>= 0.33))
(provider
(>= 0.0.11))
(sexplib0
(and
(>= v0.17)
Expand Down Expand Up @@ -239,6 +243,8 @@
(and
:with-dev-setup
(= 0.27.0)))
(astring
(>= 0.8.5))
(base
(and
(>= v0.17)
Expand Down
1 change: 1 addition & 0 deletions example/dune
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
expect_test_helpers_core.expect_test_helpers_base
fpath
fpath-sexp0
unix
vcs
vcs_base
vcs_git_blocking
Expand Down
2 changes: 1 addition & 1 deletion lib/vcs/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Sexplib0
-open
Sexplib0.Sexp_conv)
(libraries fpath fpath-sexp0 provider)
(libraries astring fpath fpath-sexp0 provider)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down
2 changes: 1 addition & 1 deletion lib/vcs_command/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Sexplib0
-open
Sexplib0.Sexp_conv)
(libraries cmdlang eio eio_main fpath-sexp0 sexplib0 vcs vcs-git-eio)
(libraries cmdlang eio eio_main fpath-sexp0 sexplib0 unix vcs vcs-git-eio)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down
1 change: 1 addition & 0 deletions lib/vcs_git_blocking/test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
expect_test_helpers_core.expect_test_helpers_base
fpath
fpath-sexp0
unix
vcs
vcs_git_blocking
vcs_test_helpers)
Expand Down
2 changes: 1 addition & 1 deletion lib/vcs_git_eio/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Sexplib0
-open
Sexplib0.Sexp_conv)
(libraries eio fpath fpath-sexp0 sexplib0 vcs vcs-git-provider)
(libraries eio fpath fpath-sexp0 provider sexplib0 vcs vcs-git-provider)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down
1 change: 1 addition & 0 deletions lib/vcs_git_eio/test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
expect_test_helpers_core.expect_test_helpers_base
fpath
fpath-sexp0
unix
vcs
vcs_git_eio
vcs_test_helpers)
Expand Down
2 changes: 1 addition & 1 deletion lib/vcs_git_provider/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Sexplib0
-open
Sexplib0.Sexp_conv)
(libraries astring fpath fpath-sexp0 sexplib0 vcs)
(libraries astring fpath fpath-sexp0 provider sexplib0 vcs)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down
1 change: 1 addition & 0 deletions vcs-git-provider.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ depends: [
"ppx_sexp_conv" {>= "v0.17" & < "v0.18"}
"ppx_sexp_value" {>= "v0.17" & < "v0.18"}
"ppxlib" {>= "0.33"}
"provider" {>= "0.0.11"}
"sexplib0" {>= "v0.17" & < "v0.18"}
"vcs" {= version}
"odoc" {with-doc}
Expand Down
1 change: 1 addition & 0 deletions vcs-tests.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ depends: [
"dune" {>= "3.16"}
"ocaml" {>= "5.2"}
"ocamlformat" {with-dev-setup & = "0.27.0"}
"astring" {>= "0.8.5"}
"base" {>= "v0.17" & < "v0.18"}
"base_quickcheck" {>= "v0.17" & < "v0.18"}
"bisect_ppx" {with-dev-setup & >= "2.8.3"}
Expand Down
1 change: 1 addition & 0 deletions vcs.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ bug-reports: "https://github.com/mbarbin/vcs/issues"
depends: [
"dune" {>= "3.16"}
"ocaml" {>= "5.2"}
"astring" {>= "0.8.5"}
"fpath" {>= "0.7.3"}
"fpath-sexp0" {>= "0.2.2"}
"ppx_enumerate" {>= "v0.17" & < "v0.18"}
Expand Down

0 comments on commit 72d582a

Please sign in to comment.