runmat-lsp 0.4.8

Language Server Protocol implementation for RunMat editors and tooling
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(target_arch = "wasm32", allow(clippy::new_without_default))]

#[cfg(not(target_arch = "wasm32"))]
use runmat_runtime as _;

#[cfg(feature = "native")]
pub mod native;

#[cfg(feature = "native")]
pub mod backend;

#[cfg(all(feature = "wasm", target_arch = "wasm32"))]
pub mod wasm;

pub mod core;