Update all dependencies
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Kasper Juul Hermansen 2022-12-18 17:41:08 +00:00
parent 06ae52717d
commit da6b420027
3 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View File

@ -13,9 +13,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.67" version = "1.0.68"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7724808837b77f4b4de9d283820f9d98bcf496d5692934b857a2399d31ff22e6" checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
[[package]] [[package]]
name = "async-trait" name = "async-trait"
@ -502,9 +502,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.90" version = "1.0.91"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8778cc0b528968fe72abec38b5db5a20a70d148116cd9325d2bc5f5180ca3faf" checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",

View File

@ -9,7 +9,7 @@ edition = "2021"
tokio = { version = "1.23", features = ["full"] } tokio = { version = "1.23", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = {version = "1.0.67"} anyhow = {version = "1.0.68"}
prae_api = { path = "../../lib/prae_api" } prae_api = { path = "../../lib/prae_api" }
prae_core = { path = "../../lib/prae_core" } prae_core = { path = "../../lib/prae_core" }

View File

@ -8,8 +8,8 @@ edition = "2021"
[dependencies] [dependencies]
axum = { version = "0.6" } axum = { version = "0.6" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.90" serde_json = "1.0.91"
tokio = { version = "1.23", features = ["full"] } tokio = { version = "1.23", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3" } tracing-subscriber = { version = "0.3" }
anyhow = { version = "1.0.67" } anyhow = { version = "1.0.68" }