From 2f8884c3c04917acedf51c5853fd3276f1627a9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 01:44:51 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- Cargo.lock | 17 +++++++++-------- core/Cargo.toml | 2 +- database/Cargo.toml | 2 +- server/Cargo.toml | 4 ++-- types/Cargo.toml | 4 ++-- 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a2ef67..b258d2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,9 +100,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.12" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16705af05732b7d3258ec0f7b73c03a658a28925e050d8852d5b568ee8bcf4e" +checksum = "6b9496f0c1d1afb7a2af4338bbe1d969cddfead41d87a9fb3aaa6d0bbc7af648" dependencies = [ "async-trait", "axum-core", @@ -1249,18 +1249,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.138" +version = "1.0.139" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47" +checksum = "0171ebb889e45aa68b44aee0859b3eede84c6f5f5c228e6f140c0b2a0a46cad6" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.138" +version = "1.0.139" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c" +checksum = "dc1d3230c1de7932af58ad8ffbe1d784bd55efd5a9d84ac24f69c72d83543dfb" dependencies = [ "proc-macro2", "quote", @@ -1590,10 +1590,11 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" dependencies = [ + "autocfg", "bytes", "libc", "memchr", diff --git a/core/Cargo.toml b/core/Cargo.toml index 0a094e2..a85f9f6 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.58" better-panic = "0.3.0" tracing-subscriber = "0.3.14" tracing = { version = "0.1.35", features = ["max_level_debug", "release_max_level_info"] } -tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros"] } homedisk-database = { path = "../database" } homedisk-server = { path = "../server" } homedisk-types = { path = "../types", features = ["config"] } diff --git a/database/Cargo.toml b/database/Cargo.toml index 4631a67..66b7f60 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -11,4 +11,4 @@ uuid = { version = "1.1.2", features = ["v5"] } homedisk-types = { path = "../types", features = ["database"] } [dev-dependencies] -tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 0a1b9ed..79fd4be 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.12", features = ["multipart"] } +axum = { version = "0.5.13", features = ["multipart"] } axum-auth = "0.2.0" base64 = "0.13.0" byte-unit = "4.0.14" @@ -12,7 +12,7 @@ futures = "0.3.21" hyper = { version = "0.14.20", features = ["full"] } log = "0.4.17" crypto-utils = { version = "0.4.0", features = ["jwt"] } -serde = { version = "1.0.138", features = ["derive"] } +serde = { version = "1.0.139", features = ["derive"] } thiserror = "1.0.31" tower-http = { version = "0.3.4", features = ["full"] } homedisk-database = { path = "../database" } diff --git a/types/Cargo.toml b/types/Cargo.toml index e7689c2..e7648f3 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -11,8 +11,8 @@ database = ["crypto-utils", "hex", "sqlx"] thiserror = "1.0.31" uuid = "1.1.2" anyhow = "1.0.58" -serde = { version = "1.0.138", features = ["derive"] } -axum = { version = "0.5.12", optional = true } +serde = { version = "1.0.139", features = ["derive"] } +axum = { version = "0.5.13", optional = true } toml = { version = "0.5.9", optional = true } dirs = { version = "4.0.0", optional = true } crypto-utils = { version = "0.4.0", features = ["sha"], optional = true }