test rust lsp

This commit is contained in:
2025-09-07 07:18:18 +02:00
parent a8bf55882e
commit 7a3e3ae9f7
330 changed files with 1714 additions and 70094 deletions
+13
View File
@@ -0,0 +1,13 @@
use anyhow::Result;
use env_logger::Env;
use lsp_server::Connection;
mod server;
fn main() -> Result<()> {
env_logger::Builder::from_env(Env::default().default_filter_or("info")).init();
let (connection, io_threads) = Connection::stdio();
server::Server::new(connection).run()?;
io_threads.join()?;
Ok(())
}