diff --git a/Cargo.lock b/Cargo.lock index 213b7f6..71b65e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,9 +45,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.58" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" +checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" [[package]] name = "ascii-canvas" diff --git a/client/Cargo.toml b/client/Cargo.toml index ecea4b1..4675fc8 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -19,7 +19,7 @@ reqwest = { version = "0.11.11", features = ["json"] } sycamore = "0.7.1" log = "0.4.17" futures = "0.3.21" -anyhow = "1.0.58" +anyhow = "1.0.65" serde = "1.0.144" serde_derive = "1.0.137" serde_urlencoded = "0.7.1" diff --git a/server/Cargo.toml b/server/Cargo.toml index 7fa2de3..8248012 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.65" bytes = "1.1.0" chrono = "0.4.19" futures = "0.3.21" @@ -46,7 +46,7 @@ tempfile = "3.3.0" maplit = "1.0.2" [build-dependencies] -anyhow = "1.0.58" +anyhow = "1.0.65" schema = { path = "./schema" } sqlx = { version = "0.5.13", features = [ "runtime-tokio-native-tls", "sqlite" ] } tokio = { version = "1.20.1", features = [ "macros", "rt-multi-thread", "fs" ] } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 5c1ef9e..0400bfa 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.65" serde = { version = "1.0.144", features = [ "rc" ] } serde_derive = "1.0.137" lalrpop-util = "0.19.8"