diff --git a/Cargo.lock b/Cargo.lock index 53da53f3f..072ba0315 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,9 +408,9 @@ checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" [[package]] name = "async-trait" -version = "0.1.78" +version = "0.1.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85" +checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" dependencies = [ "proc-macro2", "quote", diff --git a/bench/Cargo.toml b/bench/Cargo.toml index c16ca148b..165ed52d8 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -async-trait = "0.1.78" +async-trait = "0.1.79" bytes = "1.6.0" clap = { version = "4.5.3", features = ["derive"] } colored = "2.0.4" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f3b19d175..b593a54e0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://iggy.rs" [dependencies] anyhow = "1.0.81" -async-trait = "0.1.78" +async-trait = "0.1.79" clap = { version = "4.5.3", features = ["derive"] } clap_complete = "4.5.1" figlet-rs = "0.1.5" diff --git a/integration/Cargo.toml b/integration/Cargo.toml index ccd99f903..0ece97a56 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] assert_cmd = "2.0.14" -async-trait = "0.1.78" +async-trait = "0.1.79" byte-unit = { version = "5.1.4", default-features = false, features = [ "serde", "byte", diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 964793719..cf3cbb048 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -15,7 +15,7 @@ readme = "../README.md" aes-gcm = "0.10.3" anyhow = "1.0.81" async-dropper = { version = "0.3.1", features = ["tokio", "simple"] } -async-trait = "0.1.78" +async-trait = "0.1.79" base64 = "0.22.0" byte-unit = { version = "5.1.4", default-features = false, features = [ "serde", diff --git a/server/Cargo.toml b/server/Cargo.toml index e7b4f704d..d4a1919ce 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,7 +13,7 @@ tokio-console = ["dep:console-subscriber", "tokio/tracing"] aes-gcm = "0.10.3" anyhow = "1.0.81" async-stream = "0.3.5" -async-trait = "0.1.78" +async-trait = "0.1.79" atone = "0.3.7" axum = "0.7.4" axum-server = { version = "0.6.0", features = ["tls-rustls"] }