this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 69 lines 1.5 kB view raw
1opam-version: "2.0" 2 3version: "dev" 4homepage: "https://github.com/ocaml/odoc" 5doc: "https://ocaml.github.io/odoc/" 6bug-reports: "https://github.com/ocaml/odoc/issues" 7license: "ISC" 8 9maintainer: [ 10 "Daniel Bünzli <daniel.buenzli@erratique.ch>" 11 "Jon Ludlam <jon@recoil.org>" 12 "Jules Aguillon <juloo.dsi@gmail.com>" 13 "Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>" 14] 15authors: [ 16 "Anton Bachin <antonbachin@yahoo.com>" 17 "Daniel Bünzli <daniel.buenzli@erratique.ch>" 18 "David Sheets <sheets@alum.mit.edu>" 19 "Jon Ludlam <jon@recoil.org>" 20 "Jules Aguillon <juloo.dsi@gmail.com>" 21 "Leo White <leo@lpw25.net>" 22 "Lubega Simon <lubegasimon73@gmail.com>" 23 "Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>" 24 "Thomas Refis <trefis@janestreet.com>" 25] 26dev-repo: "git+https://github.com/ocaml/odoc.git" 27 28synopsis: "OCaml Documentation Generator - Driver" 29description: """ 30The driver is a sample implementation of a tool to drive odoc to generate 31documentation for installed packages. 32""" 33 34 35depends: [ 36 "ocaml" {>= "5.1.0"} 37 "odoc" {= version} 38 "dune" {>= "3.21.0"} 39 "odoc-md" 40 "bos" 41 "fpath" {>= "0.7.3"} 42 "yojson" {>= "2.0.0"} 43 "ocamlfind" 44 "opam-format" {>= "2.1.0"} 45 "logs" 46 "eio_main" 47 "eio" {>= "1.0"} 48 "progress" 49 "cmdliner" {>= "1.3.0"} 50 "sexplib" 51 "ppx_sexp_conv" 52 "sherlodoc" 53] 54 55build: [ 56 ["dune" "subst"] {dev} 57 [ 58 "dune" 59 "build" 60 "-p" 61 name 62 "-j" 63 jobs 64 "@install" 65 "@doc" {with-doc} 66 ] 67] 68 69x-maintenance-intent: ["(latest)"]