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" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/vcaml/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async" {>= "v0.14" & < "v0.15"} 15 "async_extra" {>= "v0.14" & < "v0.15"} 16 "base" {>= "v0.14" & < "v0.15"} 17 "core" {>= "v0.14" & < "v0.15"} 18 "core_kernel" {>= "v0.14" & < "v0.15"} 19 "ppx_jane" {>= "v0.14" & < "v0.15"} 20 "angstrom" {>= "0.14.1"} 21 "angstrom-async" {>= "0.14.1"} 22 "dune" {>= "2.0.0"} 23 "faraday" 24] 25synopsis: "OCaml bindings for the Neovim API" 26description: " 27The Neovim text editor comes with an RPC-based public API 28which can be used to control the editor. This set of libraries implements 29an OCaml interface to those APIs, for the purpose of permitting neovim 30plugins to be written in OCaml. 31" 32url { 33 src: 34 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/vcaml-v0.14.0.tar.gz" 35 checksum: [ 36 "sha256=d30d1858696f21cb2863ff1a3c39fc9b12c488aa5328073e300ec852d2716a1e" 37 "md5=f667331f1f877114bbfdaaf078159581" 38 ] 39}