Skip to content

Commit a1c2c90

Browse files
authored
Merge pull request #444 from sigstore/dependabot/cargo/cached-0.55
build(deps): update cached requirement from 0.54 to 0.55
2 parents 4a0b323 + 327df44 commit a1c2c90

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ wasm = ["chrono/wasmbind", "getrandom/js", "ring?/wasm32_unknown_unknown_js"]
8989
[dependencies]
9090
async-trait = { version = "0.1", optional = true, default-features = false }
9191
base64 = { version = "0.22", default-features = false, features = ["std"] }
92-
cached = { version = "0.54", optional = true, features = ["async"] }
92+
cached = { version = "0.55", optional = true, features = ["async"] }
9393
cfg-if = { version = "1.0.0", optional = true, default-features = false }
9494
chrono = { version = "0.4", default-features = false, features = [
9595
"now",

src/registry/oci_caching_client.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub(crate) struct OciCachingClient {
3636
#[cached(
3737
time = 60,
3838
result = true,
39-
sync_writes = true,
39+
sync_writes = "default",
4040
key = "String",
4141
convert = r#"{ format!("{}", image) }"#,
4242
with_cached_flag = true
@@ -128,7 +128,7 @@ impl<'a> PullSettings<'a> {
128128
#[cached(
129129
time = 60,
130130
result = true,
131-
sync_writes = true,
131+
sync_writes = "default",
132132
key = "String",
133133
convert = r#"{ settings.hash() }"#,
134134
with_cached_flag = true
@@ -219,7 +219,7 @@ impl PullManifestSettings {
219219
#[cached(
220220
time = 60,
221221
result = true,
222-
sync_writes = true,
222+
sync_writes = "default",
223223
key = "String",
224224
convert = r#"{ settings.hash() }"#,
225225
with_cached_flag = true

0 commit comments

Comments
 (0)