diff --git a/Cargo.lock b/Cargo.lock index 49ac3c13..bbab5f74 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,13 +78,13 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.67" +version = "0.1.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4" +checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ "proc-macro2", "quote", - "syn 2.0.5", + "syn 2.0.10", ] [[package]] @@ -2085,7 +2085,7 @@ checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad" dependencies = [ "proc-macro2", "quote", - "syn 2.0.5", + "syn 2.0.10", ] [[package]] @@ -2260,9 +2260,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.5" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89c2d1c76a26822187a1fbb5964e3fff108bc208f02e820ab9dac1234f6b388a" +checksum = "5aad1363ed6d37b84299588d62d3a7d95b5a5c2d9aad5c85609fda12afaa1f40" dependencies = [ "proc-macro2", "quote", @@ -2335,7 +2335,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.5", + "syn 2.0.10", ] [[package]] diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index 234595b0..34122684 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" license = "GPL-3.0" [dependencies] -async-trait = "0.1.67" +async-trait = "0.1.68" async-compression = { version = "0.3.15", features = ["gzip", "zstd", "xz", "bzip2", "tokio"] } async_zip = { version = "0.0.12", features = ["deflate", "bzip2", "lzma", "zstd", "xz"] } binstalk-types = { version = "0.3.0", path = "../binstalk-types" } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index a5533a97..aa31975c 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" license = "GPL-3.0" [dependencies] -async-trait = "0.1.67" +async-trait = "0.1.68" binstalk-downloader = { version = "0.4.2", path = "../binstalk-downloader", default-features = false, features = ["gh-api-client"] } binstalk-types = { version = "0.3.0", path = "../binstalk-types" } cargo_toml = "0.15.2"