Skip to content

Commit

Permalink
Fix minimal versions check
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Jul 22, 2024
1 parent e800886 commit a5136bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion examples/leptos-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a5136bc

Please sign in to comment.