read from an instance of GnuPG

This commit is contained in:
kalmenn 2026-02-02 09:30:56 +01:00
parent 6aa7e23872
commit ec84e86659
Signed by: kalmenn
GPG key ID: F500055C44BC3834
8 changed files with 1267 additions and 35 deletions

View file

@ -7,8 +7,8 @@ edition = "2024"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.56", features = ["derive"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
[package]
name = "git-identity"
@ -18,10 +18,18 @@ license.workspace = true
[dependencies]
anyhow.workspace = true
chrono = "0.4.43"
clap.workspace = true
thiserror = "2.0.18"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
console = "0.16"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
dirs = "6.0"
gpgme = "0.11"
itertools = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
toml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = true