this repo has no description
at main 64 lines 1.3 kB view raw
1(lang dune 3.21) 2 3(using dune_site 0.1) 4 5(name odoc) 6 7(documentation "https://ocaml.org/p/odoc") 8 9(source 10 (github ocaml/odoc)) 11 12(license ISC) 13 14(authors 15 "Anton Bachin <antonbachin@yahoo.com>" 16 "Daniel B\195\188nzli <daniel.buenzli@erratique.ch>" 17 "David Sheets <sheets@alum.mit.edu>" 18 "Jon Ludlam <jon@recoil.org>" 19 "Jules Aguillon <juloo.dsi@gmail.com>" 20 "Leo White <leo@lpw25.net>" 21 "Lubega Simon <lubegasimon73@gmail.com>" 22 "Paul-Elliot Angl\195\168s d'Auriac <paul-elliot@tarides.com>" 23 "Thomas Refis <trefis@janestreet.com>" 24 "Arthur Wendling <art.wendling@gmail.com>" 25 "Emile Trotignon <emile.trotignon@gmail.com>") 26 27(maintainers 28 "Daniel B\195\188nzli <daniel.buenzli@erratique.ch>" 29 "Jon Ludlam <jon@recoil.org>" 30 "Jules Aguillon <juloo.dsi@gmail.com>" 31 "Paul-Elliot Angl\195\168s d'Auriac <paul-elliot@tarides.com>") 32 33(cram enable) 34 35(package 36 (name odoc) 37 (sites (lib extensions)) 38 (depends 39 base64 40 (cmdliner :with-doc) 41 (odoc-md :with-doc) 42 (sherlodoc :with-doc) 43 (odoc-driver :with-doc)) 44) 45 46(package (name odoc-parser) 47 (depends 48 (odoc :with-doc)) 49) 50(package (name odoc-md)) 51(package 52 (name odoc-driver) 53 (depends 54 (odoc :with-doc) 55 (sherlodoc :with-doc))) 56 57(package (name odoc-bench) (allow_empty)) 58(package (name sherlodoc)) 59 60(using mdx 0.3) 61 62; Sherlodoc 63(using menhir 2.1) 64(using directory-targets 0.1)