this repo has no description

[new release] earlybird (0.1.0) (#12722)

CHANGES:

- Auto discover sources heuristically
- Line breakpoints and column breakpoints
- Basic `next`, `step in`, `step out` and `continue` commands
- Inspect stack frames, local variables, closure variables and global variables

Changed files
+35
packages
earlybird
earlybird.0.1.0
+35
packages/earlybird/earlybird.0.1.0/opam
···
···
+
opam-version: "2.0"
+
name: "earlybird"
+
version: "0.1.0"
+
synopsis: "OCaml debug adapter"
+
description: """
+
OCaml debug adapter.
+
"""
+
maintainer: "文宇祥 <hackwaly@qq.com>"
+
authors: "文宇祥 <hackwaly@qq.com>"
+
license: "MIT"
+
homepage: "https://github.com/hackwaly/ocamlearlybird"
+
bug-reports: "https://github.com/hackwaly/ocamlearlybird/issues"
+
dev-repo: "git://git@github.com:hackwaly/ocamlearlybird.git"
+
doc: "https://hackwaly.github.io/ocamlearlybird/"
+
depends: [
+
"ocaml" {>= "4.06" & < "4.07"}
+
"dune" {build}
+
"cmdliner"
+
"batteries"
+
"lwt"
+
"lwt_ppx"
+
"angstrom"
+
"angstrom-lwt-unix"
+
"yojson"
+
"ppx_deriving_yojson"
+
]
+
build: [
+
["dune" "subst"] {pinned}
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
url {
+
src:
+
"https://github.com/hackwaly/ocamlearlybird/releases/download/0.1.0/earlybird-0.1.0.tbz"
+
checksum: "md5=b842c45b529ea5d41da238452316e1d9"
+
}