From fd0ebb9ed6cc20e464c6ad3a1d8c3eeea3f1067d Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Mon, 13 May 2024 02:58:40 -0700 Subject: [PATCH] Run `cargo upgrade` to update dependencies --- Cargo.toml | 10 +++++----- examples/minimal/Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 003c8476..3ad08d44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ axum-extra = { version = "0.9.3", features = ["typed-header"] } tower = "0.4.13" tower-http = { version = "0.5.2", features = ["trace", "timeout", "request-id", "util", "normalize-path", "sensitive-headers", "catch-panic", "compression-full", "decompression-full", "limit"] } aide = { version = "0.13.4", features = ["axum", "redoc", "scalar", "macros"], optional = true } -schemars = { version = "0.8.17", optional = true } +schemars = { version = "0.8.19", optional = true } # DB sea-orm = { version = "1.0.0-rc.4", features = ["debug-print", "runtime-tokio-rustls", "sqlx-postgres", "macros"], optional = true } @@ -68,14 +68,14 @@ jsonwebtoken = { version = "9.3.0", optional = true } clap = { version = "4.5.4", features = ["derive", "string"], optional = true } # Others -anyhow = "1.0.82" -serde = "1.0.200" -serde_derive = "1.0.200" +anyhow = "1.0.83" +serde = "1.0.201" +serde_derive = "1.0.201" serde_with = { version = "3.8.1", features = ["macros", "chrono_0_4"] } strum = "0.26.2" strum_macros = "0.26.2" itertools = "0.12.1" -serde_json = "1.0.116" +serde_json = "1.0.117" toml = "0.8.12" url = { version = "2.5.0", features = ["serde"] } uuid = { version = "1.8.0", features = ["v4", "serde"] } diff --git a/examples/minimal/Cargo.toml b/examples/minimal/Cargo.toml index 1c905d14..bfeb0095 100644 --- a/examples/minimal/Cargo.toml +++ b/examples/minimal/Cargo.toml @@ -9,12 +9,12 @@ publish = false [dependencies] roadster = { version = "0.1", path = "../.." } tokio = { version = "1.37.0", features = ["full", "macros"] } -anyhow = "1.0.82" +anyhow = "1.0.83" tracing = { version = "0.1.40", features = ["async-await"] } async-trait = "0.1.80" aide = { version = "0.13.4", features = ["axum"] } axum = "0.7.5" -schemars = "0.8.17" +schemars = "0.8.19" # DB entity = { path = "entity" } @@ -23,7 +23,7 @@ clap = { version = "4.5.4", features = ["derive"] } # The default `rss-stats` feature has a dependency that currently can't be satisfied (memchr: ~2.3) rusty-sidekiq = { version = "0.10.5", default-features = false } -serde = { version = "1.0.200", features = ["derive"] } +serde = { version = "1.0.201", features = ["derive"] } [dev-dependencies] cargo-husky = { version = "1.5.0", features = ["default", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt", "run-cargo-test"] }