Skip to main content

rust_meth/
lib.rs

1//! Rust method explorer — queries LSP completions and definitions
2//! for any Rust type, including third-party crates.
3
4#![deny(missing_docs)]
5
6/// Orchestrates the full LSP session
7pub mod analyzer;
8pub(crate) mod lsp;
9pub(crate) mod probe;
10
11pub use lsp::LspTransport;
12pub use probe::Probe;