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
16
set shell := ["zsh", "-c"]
hostname := "magic"

default:
    @just --list
# Cargo
[group('cargo')]
push:
    cargo fmt -- --check
    cargo clippy -- -D warnings
    cargo test
    jj bookmark set main -r @-
    jj git push
[group('cargo')]
clip:
    cargo clippy --all-targets --all-features -- -D warnings -W clippy::pedantic -W clippy::nursery