entrust 0.5.0

A CLI password manager
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "entrust"
version = "0.5.0"
authors = ["hepptho"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "ent"
description = "A CLI password manager"
homepage = "https://github.com/hepptho/entrust"
readme = "README.md"
keywords = ["cli"]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/hepptho/entrust"

[features]
agent = [
    "entrust-core/agent",
    "dep:entrust-agent",
]
autotype = ["dep:enigo"]
tracing = [
    "dep:tracing",
    "dep:tracing-subscriber",
]

[lib]
name = "entrust"
path = "src/lib.rs"

[[bin]]
name = "ent"
path = "src/bin/ent.rs"

[[bin]]
name = "ent-agent"
path = "src/bin/ent_agent.rs"
required-features = ["agent"]

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
    "wrap_help",
]

[dependencies.clap_complete]
version = "4.5"

[dependencies.color-print]
version = "0.3"

[dependencies.const_format]
version = "0.2"

[dependencies.copypasta]
version = "0.10"

[dependencies.enigo]
version = "0.5"
optional = true

[dependencies.entrust-agent]
version = "0.5.0"
optional = true

[dependencies.entrust-core]
version = "0.5.0"

[dependencies.entrust-dialog]
version = "0.5.0"

[dependencies.itertools]
version = "0.14"

[dependencies.rand]
version = "0.9"

[dependencies.shlex]
version = "1.3"

[dependencies.termtree]
version = "0.5.0"

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true

[dev-dependencies.tempfile]
version = "3.25"