Skip to content

Commit b4edbbf

Browse files
author
Jack Feser
committed
update dependencies
1 parent 68c15b2 commit b4edbbf

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

bin/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(executable
22
(name main)
33
(public_name odoc2docset)
4-
(libraries stdio sqlite3 odoc.odoc odoc.model lambdasoup logs logs.fmt logs.cli
5-
fmt.cli fmt.tty cmdliner shell str))
4+
(libraries stdio sqlite3 odoc.odoc odoc.model lambdasoup logs logs.fmt
5+
logs.cli fmt.cli fmt.tty cmdliner shell str))

dune-project

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,9 @@
2020
"Generates Dash docsets for OCaml packages using the Odoc documentation generator.")
2121
(depends
2222
(dune
23-
(and
24-
:build
25-
(>= 1.11)))
23+
(>= 2))
2624
(logs
2725
(>= 0.6))
28-
(core
29-
(>= v0.14))
30-
(ppx_jane
31-
(>= v0.12))
3226
(sqlite3
3327
(>= 4.4))
3428
(lambdasoup
@@ -38,9 +32,13 @@
3832
(fmt
3933
(>= 0.8))
4034
(shell
41-
(>= v0.14))))
42-
43-
(using menhir 2.0)
35+
(>= v0.14))
36+
(stdio
37+
(>= v0.14))
38+
(odoc
39+
(>= 2.0.2))
40+
(odig
41+
(>= 0.0.7))))
4442

4543
(generate_opam_files true)
4644

odoc2docset.opam

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ homepage: "https://github.com/jfeser/odoc2docset"
1010
doc: "https://jfeser.github.io/odoc2docset/"
1111
bug-reports: "https://github.com/jfeser/odoc2docset/issues"
1212
depends: [
13-
"dune" {build & >= "1.11"}
13+
"dune" {>= "2"}
1414
"logs" {>= "0.6"}
15-
"core" {>= "v0.14"}
16-
"ppx_jane" {>= "v0.12"}
1715
"sqlite3" {>= "4.4"}
1816
"lambdasoup" {>= "0.6"}
1917
"cmdliner" {>= "1.0"}
2018
"fmt" {>= "0.8"}
2119
"shell" {>= "v0.14"}
20+
"stdio" {>= "v0.14"}
21+
"odoc" {>= "2.0.2"}
22+
"odig" {>= "0.0.7"}
2223
]
2324
build: [
2425
["dune" "subst"] {pinned}

0 commit comments

Comments
 (0)