mnemo-rs 1.8.2

Local-first shell history manager with CLI/TUI, fuzzy search, project/session context, and DevSecOps-focused release hardening.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Épingle la toolchain Rust à une version EXACTE (supply chain : pas de canal
# flottant « stable »). rustup lit ce fichier automatiquement (local et CI),
# garantissant que tout le monde compile mnemo avec la même version.
#
# Pour mettre à jour : choisir une nouvelle version, valider la quality gate
#   (cargo fmt --all -- --check && cargo clippy --all-targets --all-features
#    --locked -- -D warnings && cargo test --locked && cargo build --release
#    --locked [--target x86_64-unknown-linux-musl]),
# puis remplacer le numéro ci-dessous.
[toolchain]
channel = "1.96.0"
components = ["rustfmt", "clippy"]
targets = ["x86_64-unknown-linux-musl"]
profile = "minimal"