Skip to content

Commit

Permalink
Specify dep bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreryan committed Jun 21, 2023
1 parent 0a4eac5 commit a3690a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,13 @@
(>= "v0.15.0")
(< "v0.16.0")))
(cmdliner
(= "1.2.0"))
(and
(>= "1.2.0")
(< "1.3.0")))
(little_logger
(= "0.2.0"))
(and
(>= "0.2.0")
(< "0.3.0")))
(ocaml
(= "4.14.1"))
(ocamlformat
Expand Down
4 changes: 2 additions & 2 deletions pasv.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ depends: [
"bisect_ppx" {>= "2.8.0" & < "2.9.0"}
"core" {>= "v0.15.0" & < "v0.16.0"}
"core_unix" {>= "v0.15.0" & < "v0.16.0"}
"cmdliner" {= "1.2.0"}
"little_logger" {= "0.2.0"}
"cmdliner" {>= "1.2.0" & < "1.3.0"}
"little_logger" {>= "0.2.0" & < "0.3.0"}
"ocaml" {= "4.14.1"}
"ocamlformat" {= "0.25.1"}
"ppx_jane" {>= "v0.15.0" & < "v0.16.0"}
Expand Down

0 comments on commit a3690a5

Please sign in to comment.