this repo has no description
1opam-version: "2.0"
2synopsis: "Debug adapter protocol"
3description: """
4The Debug Adapter Protocol defines the protocol used between an editor or IDE and a debugger or runtime.
5"""
6maintainer: "文宇祥 <hackwaly@qq.com>"
7authors: "文宇祥 <hackwaly@qq.com>"
8license: "MIT"
9homepage: "https://github.com/hackwaly/ocaml-dap"
10bug-reports: "https://github.com/hackwaly/ocaml-dap/issues"
11dev-repo: "git+https://github.com/hackwaly/ocaml-dap.git"
12doc: "https://hackwaly.github.io/ocaml-dap/"
13depends: [
14 "ocaml" {>= "4.08"}
15 "dune" {>= "2.7"}
16 "yojson"
17 "ppx_here"
18 "ppx_deriving"
19 "ppx_deriving_yojson"
20 "ppx_expect"
21 "lwt"
22 "lwt_ppx" {>= "2.0.1"}
23 "lwt_react"
24 "react"
25 "angstrom"
26 "angstrom-lwt-unix"
27 "logs"
28]
29conflicts: [
30 "result" {< "1.5"}
31]
32build: [
33 ["dune" "subst"] {dev}
34 ["dune" "build" "-p" name "-j" jobs]
35]
36x-commit-hash: "c811d5331984b6a5cd1fba7f2fe62d7990021c65"
37url {
38 src:
39 "https://github.com/hackwaly/ocaml-dap/releases/download/1.0.3/dap-1.0.3.tbz"
40 checksum: [
41 "sha256=a7a925d4633f65f89d401b7f267aaa3b5e0a14b16f34d533151bb8ca854e2938"
42 "sha512=a4174aa17e91832e444127881d42026ab41026bcf0f6ba521de609143cac3f5271e7031553d99d8f32a5a4da5ece6c1d4cf7a95835fdc089c1b098ef86de1fc7"
43 ]
44}