rust-meth 0.3.0

Discover methods available on any Rust type with fuzzy filtering, inline documentation, interactive selection, and go-to-definition.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `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.
use rust_meth_lib::app;

use std::process;

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