-
Notifications
You must be signed in to change notification settings - Fork 22
/
mldoc.opam
47 lines (47 loc) · 1.05 KB
/
mldoc.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
opam-version: "2.0"
synopsis:
"Another Org-mode and Markdown parser implemented using OCaml and Angstrom"
description:
"Another Org-mode and Markdown parser implemented using OCaml and Angstrom."
maintainer: ["logseq team"]
authors: ["tiensonqin <tiensonqin@gmail.com>" "RCmerci <rcmerci@gmail.com>"]
homepage: "https://github.com/logseq/mldoc"
bug-reports: "https://github.com/logseq/mldoc/issues"
depends: [
"dune" {>= "3.5"}
"ocaml" {>= "4.14.0"}
"angstrom" {= "dev"}
"cmdliner" {>= "1.1.0"}
"core"
"core_bench"
"core_unix"
"js_of_ocaml" {>= "5.2.0"}
"js_of_ocaml-ppx"
"ppx_deriving_yojson"
"uri"
"yojson"
"lwt"
"xmlm" {= "dev"}
"odoc" {with-doc}
"alcotest" {with-test}
"qcheck" {with-test}
"qcheck-alcotest" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
pin-depends: [
[ "angstrom.dev" "git+https://github.com/logseq/angstrom#fork" ]
[ "xmlm.dev" "git+https://github.com/logseq/xmlm#fork" ]
]