age-plugin 0.5

This commit is contained in:
Jack Grigg
2024-07-30 05:19:13 +00:00
parent 71eb71d9c6
commit 6452fa0540
3 changed files with 11 additions and 11 deletions
Generated
+7 -7
View File
@@ -29,11 +29,11 @@ dependencies = [
[[package]] [[package]]
name = "age-core" name = "age-core"
version = "0.9.0" version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d2e815ac879dc23c1139e720d21c6cd4d1276345c772587285d965a69b8f32" checksum = "a5f11899bc2bbddd135edbc30c36b1924fa59d0746bb45beb5933fafe3fe509b"
dependencies = [ dependencies = [
"base64 0.13.1", "base64 0.21.7",
"chacha20poly1305", "chacha20poly1305",
"cookie-factory", "cookie-factory",
"hkdf", "hkdf",
@@ -47,12 +47,12 @@ dependencies = [
[[package]] [[package]]
name = "age-plugin" name = "age-plugin"
version = "0.4.0" version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4564b93d746fc5947e08ee2b9b3f990df89133803857b6ee0dad8b0efeb8bc79" checksum = "04740d993aac0e06eaf4cfbf8484a8a23a6a7f950cf5d53bdf2d6ea3f429eb9d"
dependencies = [ dependencies = [
"age-core", "age-core",
"base64 0.13.1", "base64 0.21.7",
"bech32", "bech32",
"chrono", "chrono",
] ]
@@ -994,7 +994,7 @@ dependencies = [
"httpdate", "httpdate",
"itoa", "itoa",
"pin-project-lite", "pin-project-lite",
"socket2 0.4.10", "socket2 0.5.7",
"tokio", "tokio",
"tower-service", "tower-service",
"tracing", "tracing",
+2 -2
View File
@@ -22,8 +22,8 @@ assets = [
] ]
[dependencies] [dependencies]
age-core = "0.9" age-core = "0.10"
age-plugin = "0.4" age-plugin = "0.5"
base64 = "0.21" base64 = "0.21"
bech32 = "0.9" bech32 = "0.9"
console = { version = "0.15", default-features = false } console = { version = "0.15", default-features = false }
+2 -2
View File
@@ -329,8 +329,8 @@ fn main() -> Result<(), Error> {
if let Some(state_machine) = opts.age_plugin { if let Some(state_machine) = opts.age_plugin {
run_state_machine( run_state_machine(
&state_machine, &state_machine,
plugin::RecipientPlugin::default, Some(plugin::RecipientPlugin::default),
plugin::IdentityPlugin::default, Some(plugin::IdentityPlugin::default),
)?; )?;
Ok(()) Ok(())
} else if opts.version { } else if opts.version {