this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/vcaml" 5bug-reports: "https://github.com/janestreet/vcaml/issues" 6dev-repo: "git+https://github.com/janestreet/vcaml.git" 7license: "MIT" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10] 11depends: [ 12 "ocaml" {>= "4.08.0"} 13 "async" {>= "v0.13" & < "v0.14"} 14 "async_extra" {>= "v0.13" & < "v0.14"} 15 "base" {>= "v0.13" & < "v0.14"} 16 "core" {>= "v0.13" & < "v0.14"} 17 "core_kernel" {>= "v0.13" & < "v0.14"} 18 "ppx_jane" {>= "v0.13" & < "v0.14"} 19 "angstrom" {< "0.14.0"} 20 "angstrom-async" {< "0.14.0"} 21 "dune" {>= "2.0.0"} 22 "faraday" 23] 24synopsis: "OCaml bindings for the Neovim API" 25description: " 26The Neovim text editor comes with an RPC-based public API 27which can be used to control the editor. This set of libraries implements 28an OCaml interface to those APIs, for the purpose of permitting neovim 29plugins to be written in OCaml. 30" 31url { 32 src: "https://github.com/janestreet/vcaml/archive/v0.13.0.tar.gz" 33 checksum: [ 34 "sha256=a5c0f5d0a77d5ac7688221c6c7c7023e3587a8374659556f67074df6676c3d6f" 35 "md5=f346c9fa625ca6068b1d24a474776669" 36 ] 37}