nvim-oxi 0.6.0

Rust bindings to all things Neovim
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(not(any(
    feature = "neovim-0-10",
    feature = "neovim-0-11",
    feature = "neovim-nightly"
)))]
compile_error!(
    "You must enable one of the features: neovim-0-10, neovim-0-11, \
     neovim-nightly"
);

fn main() {
    println!("cargo:rerun-if-changed=build");
}