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.14.0" & < "5.1"} 14 "async" {>= "v0.16" & < "v0.17"} 15 "core" {>= "v0.16" & < "v0.17"} 16 "core_kernel" {>= "v0.16" & < "v0.17"} 17 "core_unix" {>= "v0.16" & < "v0.17"} 18 "expect_test_helpers_async" {>= "v0.16" & < "v0.17"} 19 "jsonaf" {>= "v0.16" & < "v0.17"} 20 "man_in_the_middle_debugger" {>= "v0.16" & < "v0.17"} 21 "ppx_jane" {>= "v0.16" & < "v0.17"} 22 "ppx_optcomp" {>= "v0.16" & < "v0.17"} 23 "semantic_version" {>= "v0.16" & < "v0.17"} 24 "textutils" {>= "v0.16" & < "v0.17"} 25 "angstrom" {>= "0.15.0"} 26 "angstrom-async" {>= "0.15.0"} 27 "dune" {>= "2.0.0"} 28 "faraday" 29] 30synopsis: "OCaml bindings for the Neovim API" 31description: " 32VCaml provides OCaml bindings for Neovim's and models some of Neovim's 33more tricky semantics so plugin authors do not need to consider them when writing plugins. 34Plugins communicate with Neovim remotely over Msgpack RPC (see `:h api` for details). 35" 36url { 37src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/vcaml-v0.16.0.tar.gz" 38checksum: "sha256=dd123302c46af7ca6eda8a7806c78236fd217a8c73a2e1cd7da85f1d69ed1ae4" 39}