Skip to content

Commit

Permalink
Fix picos_std package to depend on picos_aux
Browse files Browse the repository at this point in the history
Also, upgrade dependency on `backoff` from 0.1.0 to 0.1.1.
  • Loading branch information
polytypic committed Nov 1, 2024
1 parent ec3d2dd commit e3dbf47
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
12 changes: 7 additions & 5 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(>= 4.14.0))
;;
(backoff
(>= 0.1.0))
(>= 0.1.1))
(multicore-magic
(>= 2.3.0))
;;
Expand All @@ -42,7 +42,7 @@
"A systems programming interface between effects based schedulers and concurrent abstractions.")
(depends
(backoff
(>= 0.1.0))
(>= 0.1.1))
(thread-local-storage
(>= 0.2))
;;
Expand All @@ -54,9 +54,11 @@
(depends
(picos
(= :version))
(picos_aux
(= :version))
;;
(backoff
(>= 0.1.0))
(>= 0.1.1))
(multicore-magic
(>= 2.3.0))
;;
Expand All @@ -72,7 +74,7 @@
(= :version))
;;
(backoff
(>= 0.1.0))
(>= 0.1.1))
(mtime
(>= 2.0.0))
(multicore-magic
Expand Down Expand Up @@ -108,7 +110,7 @@
(= :version))
;;
(backoff
(>= 0.1.0))
(>= 0.1.1))
(multicore-magic
(>= 2.3.0))
;;
Expand Down
2 changes: 1 addition & 1 deletion picos.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage: "https://github.com/ocaml-multicore/picos"
bug-reports: "https://github.com/ocaml-multicore/picos/issues"
depends: [
"dune" {>= "3.14"}
"backoff" {>= "0.1.0"}
"backoff" {>= "0.1.1"}
"thread-local-storage" {>= "0.2"}
"odoc" {with-doc}
]
Expand Down
2 changes: 1 addition & 1 deletion picos_aux.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bug-reports: "https://github.com/ocaml-multicore/picos/issues"
depends: [
"dune" {>= "3.14"}
"ocaml" {>= "4.14.0"}
"backoff" {>= "0.1.0"}
"backoff" {>= "0.1.1"}
"multicore-magic" {>= "2.3.0"}
"odoc" {with-doc}
]
Expand Down
2 changes: 1 addition & 1 deletion picos_io.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"dune" {>= "3.14"}
"picos_aux" {= version}
"picos_std" {= version}
"backoff" {>= "0.1.0"}
"backoff" {>= "0.1.1"}
"mtime" {>= "2.0.0"}
"multicore-magic" {>= "2.3.0"}
"psq" {>= "0.2.1"}
Expand Down
2 changes: 1 addition & 1 deletion picos_mux.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"dune" {>= "3.14"}
"picos_aux" {= version}
"picos_std" {= version}
"backoff" {>= "0.1.0"}
"backoff" {>= "0.1.1"}
"multicore-magic" {>= "2.3.0"}
"odoc" {with-doc}
]
Expand Down
3 changes: 2 additions & 1 deletion picos_std.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ bug-reports: "https://github.com/ocaml-multicore/picos/issues"
depends: [
"dune" {>= "3.14"}
"picos" {= version}
"backoff" {>= "0.1.0"}
"picos_aux" {= version}
"backoff" {>= "0.1.1"}
"multicore-magic" {>= "2.3.0"}
"odoc" {with-doc}
]
Expand Down

0 comments on commit e3dbf47

Please sign in to comment.