From a7329c652a98786c3080ea1072e901eea9b9c07f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Aug 2022 22:10:58 +0000 Subject: [PATCH] Bump anyhow from 1.0.58 to 1.0.62 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.58 to 1.0.62. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.58...1.0.62) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ client/Cargo.toml | 4 ++-- server/Cargo.toml | 6 +++--- shared/Cargo.toml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fbd527..f1f9767 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,9 +45,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.58" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" +checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305" [[package]] name = "ascii-canvas" @@ -1946,18 +1946,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.138" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47" +checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.138" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c" +checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" dependencies = [ "proc-macro2", "quote", diff --git a/client/Cargo.toml b/client/Cargo.toml index ac8e9e0..c347344 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -19,8 +19,8 @@ reqwest = { version = "0.11.11", features = ["json"] } sycamore = "0.7.1" log = "0.4.17" futures = "0.3.21" -anyhow = "1.0.58" -serde = "1.0.138" +anyhow = "1.0.62" +serde = "1.0.144" serde_derive = "1.0.137" serde_urlencoded = "0.7.1" console_error_panic_hook = "0.1.7" diff --git a/server/Cargo.toml b/server/Cargo.toml index 6b6050e..48342f3 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.62" bytes = "1.1.0" chrono = "0.4.19" futures = "0.3.21" @@ -21,7 +21,7 @@ pretty_env_logger = "0.4.0" regex = "1.5.6" rexiv2 = "0.9.1" schema = { path = "./schema" } -serde = "1.0.138" +serde = "1.0.144" serde_derive = "1.0.137" serde_json = "1.0.82" sha2 = "0.10.2" @@ -46,7 +46,7 @@ tempfile = "3.3.0" maplit = "1.0.2" [build-dependencies] -anyhow = "1.0.58" +anyhow = "1.0.62" schema = { path = "./schema" } sqlx = { version = "0.5.13", features = [ "runtime-tokio-native-tls", "sqlite" ] } tokio = { version = "1.19.2", features = [ "macros", "rt-multi-thread", "fs" ] } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 0374ef4..375ef7f 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -anyhow = "1.0.58" -serde = { version = "1.0.138", features = [ "rc" ] } +anyhow = "1.0.62" +serde = { version = "1.0.144", features = [ "rc" ] } serde_derive = "1.0.137" lalrpop-util = "0.19.8" regex-syntax = "0.6.26"