Skip to content

Commit

Permalink
Fix dune/opam constraint generation
Browse files Browse the repository at this point in the history
  • Loading branch information
dhil committed Mar 6, 2024
1 parent bde37d0 commit 551e29e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
(name multicont)
(synopsis "Multi-shot continuations in OCaml")
(description "This library provides facilities for programming with multi-shot continuations in OCaml")
(depends (ocaml (>= : 5.0.0))
(depends (ocaml (>= 5.0.0))
dune
(dune-configurator (>= : 3.8))
(dune-configurator (>= 3.8))
(ounit2 :with-test))
(tags
("multi-shot continuations" "effect handlers")))
Expand Down
4 changes: 2 additions & 2 deletions multicont.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ tags: ["multi-shot continuations" "effect handlers"]
homepage: "https://github.com/dhil/ocaml-multicont"
bug-reports: "https://github.com/dhil/ocaml-multicont/issues"
depends: [
"ocaml" {":" >= "5.0.0"}
"ocaml" {>= "5.0.0"}
"dune" {>= "3.8"}
"dune-configurator" {":" >= "3.8"}
"dune-configurator" {>= "3.8"}
"ounit2" {with-test}
"odoc" {with-doc}
]
Expand Down

0 comments on commit 551e29e

Please sign in to comment.