mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
17 lines
372 B
Rust
17 lines
372 B
Rust
#![recursion_limit = "512"]
|
|
mod caps;
|
|
mod cargo_target_spec;
|
|
mod conv;
|
|
mod main_loop;
|
|
mod markdown;
|
|
pub mod req;
|
|
pub mod config;
|
|
mod world;
|
|
|
|
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
|
pub use crate::{
|
|
caps::server_capabilities,
|
|
config::ServerConfig,
|
|
main_loop::LspError,
|
|
main_loop::{main_loop, show_message},
|
|
};
|