this repo has no description
1
fork

Configure Feed

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

at main 39 lines 1.0 kB view raw
1opam-version: "2.0" 2version: "dev" 3synopsis: "Parser for ocaml documentation comments" 4description: """ 5Odoc_parser is a library for parsing the contents of OCaml documentation 6comments, formatted using 'odoc' syntax, an extension of the language 7understood by ocamldoc.""" 8maintainer: ["Jon Ludlam <jon@recoil.org>"] 9authors: ["Anton Bachin <antonbachin@yahoo.com>"] 10license: "ISC" 11homepage: "https://github.com/ocaml/odoc" 12bug-reports: "https://github.com/ocaml/odoc/issues" 13dev-repo: "git+https://github.com/ocaml/odoc.git" 14doc: "https://ocaml.github.io/odoc/odoc_parser" 15depends: [ 16 "dune" {>= "3.21"} 17 "ocaml" {>= "4.08.0" & < "5.5"} 18 "astring" 19 "camlp-streams" 20 "ppx_expect" {with-test} 21 "sexplib0" {with-test} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 # Tests are not all associated with a package and would be run if using the 34 # default '@runtest'. 35 "@src/parser/runtest" {with-test} 36 ] 37] 38x-maintenance-intent: ["(latest)"] 39