From a5136bcc8cce4494c579c42f2d37bd5e7fb1e90a Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:07:23 -0700 Subject: [PATCH] Fix minimal versions check --- Cargo.toml | 4 ++-- examples/leptos-ssr/Cargo.toml | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b53c612c..370a9b67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ tracing = { workspace = true } tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] } opentelemetry-semantic-conventions = "0.16.0" opentelemetry = { version = "0.24.0", features = ["trace", "metrics", "logs"], optional = true } -opentelemetry_sdk = { version = "0.24.0", features = ["tokio", "rt-tokio", "metrics", "logs", "trace"], optional = true } +opentelemetry_sdk = { version = "0.24.1", features = ["tokio", "rt-tokio", "metrics", "logs", "trace"], optional = true } opentelemetry-otlp = { version = "0.17.0", features = ["metrics", "trace", "logs"], optional = true } tracing-opentelemetry = { version = "0.25.0", features = ["metrics"], optional = true } @@ -142,7 +142,7 @@ rstest = { version = "0.21.0" } # Others # Todo: minimize tokio features included in `roadster` -tokio = { version = "1.28.0", features = ["full"] } +tokio = { version = "1.34.0", features = ["full"] } # For CancellationToken tokio-util = { version = "0.7.10" } anyhow = "1.0.69" diff --git a/examples/leptos-ssr/Cargo.toml b/examples/leptos-ssr/Cargo.toml index b0a965a9..98729779 100644 --- a/examples/leptos-ssr/Cargo.toml +++ b/examples/leptos-ssr/Cargo.toml @@ -51,7 +51,6 @@ leptos_config = { version = "0.6.3" } tower = "0.4.13" tower-http = { version = "0.5", features = ["fs"], optional = true } wasm-bindgen = "=0.2.92" -http = "1" # Defines a size-optimized profile for the WASM bundle in release mode # Commented out here because profiles are ignored for packages that aren't the workspace root