Merge branch 'main' into detect-critical-extensions

This commit is contained in:
Jack Grigg
2026-04-08 04:31:34 +01:00
17 changed files with 1085 additions and 418 deletions
+13 -7
View File
@@ -9,7 +9,7 @@ keywords = ["age", "cli", "encryption", "yubikey"]
categories = ["command-line-utilities", "cryptography"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.67" # MSRV
rust-version = "1.70" # MSRV
[package.metadata.deb]
extended-description = """\
@@ -22,15 +22,17 @@ assets = [
]
[dependencies]
age-core = "0.10"
age-plugin = "0.5"
base64 = "0.21"
bech32 = "0.9"
age-core = "0.11"
age-plugin = "0.6"
base64 = "0.22"
bech32 = "0.11"
console = { version = "0.15", default-features = false }
dialoguer = { version = "0.11", default-features = false, features = ["password"] }
env_logger = "0.10"
gumdrop = "0.8"
hex = "0.4"
hkdf = "0.12"
hpke = { version = "0.12", default-features = false, features = ["alloc", "p256"] }
log = "0.4"
p256 = { version = "0.13", features = ["ecdh"] }
pcsc = "2.4"
@@ -42,8 +44,8 @@ x509-parser = "0.14"
yubikey = { version = "=0.8.0-pre.0", features = ["untested"] }
# Translations
i18n-embed = { version = "0.14", features = ["desktop-requester", "fluent-system"] }
i18n-embed-fl = "0.8"
i18n-embed = { version = "0.15", features = ["desktop-requester", "fluent-system"] }
i18n-embed-fl = "0.9"
lazy_static = "1"
rust-embed = "8"
@@ -56,3 +58,7 @@ man = "0.3"
tempfile = "3"
test-with = "0.11"
which = "5"
[patch.crates-io]
age-core = { git = "https://github.com/str4d/rage.git", rev = "e08c450aa5d7b1cc5706094080c0042ddd60aaf7" }
age-plugin = { git = "https://github.com/str4d/rage.git", rev = "e08c450aa5d7b1cc5706094080c0042ddd60aaf7" }