rust-meth 0.2.0

Discover methods available on any Rust type with fuzzy filtering, inline documentation, interactive selection, and go-to-definition into standard library source code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `rust-meth`: A CLI utility to discover and filter methods available on Rust types.
//! It leverages `rust-analyzer` via the Language Server Protocol (LSP) to provide
//! accurate, context-aware method resolution.

mod app;
mod ui;

use std::process;

fn main() {
    if let Err(err) = app::run() {
        eprintln!("error: {err}");
        process::exit(1);
    }
}