Skip to content

Commit 89d8aed

Browse files
authored
Fix dependencies (#364)
* Declare dependency of atd on cmdliner * Fix opam dependencies to match what was done for release 2.13.0 ocaml/opam-repository#24632 --------- Co-authored-by: Martin Jambon <[email protected]>
1 parent 9c54a57 commit 89d8aed

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

atd.opam

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ depends: [
7474
"odoc" {with-doc}
7575
"re" {>= "1.9.0"}
7676
"yojson" {>= "1.6.0"}
77+
"cmdliner" {>= "1.1.0"}
7778
]
7879
dev-repo: "git+https://github.com/ahrefs/atd.git"
7980
build: [

atdgen.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ depends: [
7474
"dune" {>= "2.8"}
7575
"ocaml" {>= "4.08"}
7676
"alcotest" {with-test}
77-
"atd" {>= "2.11.0"}
77+
"atd" {>= "2.13.0"}
7878
"atdgen-runtime" {>= "2.1.0"}
7979
"atdgen-codec-runtime" {with-test}
8080
"biniou" {>= "1.0.6"}

atdts.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ bug-reports: "https://github.com/ahrefs/atd/issues"
6363
depends: [
6464
"dune" {>= "2.8"}
6565
"ocaml" {>= "4.08"}
66-
"atd" {>= "2.11.0"}
66+
"atd" {>= "2.13.0"}
6767
"cmdliner" {>= "1.1.0"}
6868
"re"
6969
"alcotest" {with-test}

dune-project

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
(odoc :with-doc)
8484
(re (>= 1.9.0))
8585
(yojson (>= 1.6.0))
86+
(cmdliner (>= 1.1.0))
8687
)
8788
(synopsis "Parser for the ATD data format description language")
8889
(description "\
@@ -97,7 +98,7 @@ utilities."))
9798
(depends
9899
(ocaml (>= 4.08))
99100
(alcotest :with-test)
100-
(atd (>= 2.11.0))
101+
(atd (>= 2.13.0))
101102
(atdgen-runtime (>= 2.1.0))
102103
(atdgen-codec-runtime :with-test)
103104
(biniou (>= 1.0.6))
@@ -191,7 +192,7 @@ bucklescript backend")
191192
(description "TypeScript code generation for ATD APIs")
192193
(depends
193194
(ocaml (>= 4.08))
194-
(atd (>= 2.11.0))
195+
(atd (>= 2.13.0))
195196
(cmdliner (>= 1.1.0))
196197
re
197198
(alcotest :with-test)

0 commit comments

Comments
 (0)