entrust

Crates.ioentrust
lib.rsentrust
version
sourcesrc
created_at2024-10-28 08:04:40.299456+00
updated_at2025-02-26 16:29:19.857711+00
descriptionA CLI password manager
homepagehttps://github.com/hepptho/entrust
repositoryhttps://github.com/hepptho/entrust
max_upload_size
id1425360
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Thomas Hepp (hepptho)

documentation

README

entrust

Entrust is a CLI password manager inspired by and semi-compatible with pass. It saves passwords as files encrypted with either gpg or age.

It is developed primarily for educational purposes, to learn a bit of Rust and play around with CLI and TUI libraries. Though it should be just about serviceable, I do not recommend anyone actually use it.

Installation

Currently only via cargo:

cargo install --locked entrust

Basic usage

# add entries
ent add something/username
ent add something/password

# print an entry
ent get something/password

# interactively select an entry to print
ent get

# copy an entry to the clipboard
ent get -c something/password

# autotype into the previously active window
ent autotype 'something/username:{tab}:something/password:{enter}'
Commit count: 120

cargo fmt