mirror of
https://github.com/noib3/nvim-oxi.git
synced 2025-07-07 13:25:18 +00:00
13 lines
280 B
Rust
13 lines
280 B
Rust
#[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");
|
|
}
|