Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion detcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/re
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion detcore/tests/testutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ pretty_assertions = { version = "1.4.1", features = ["alloc"], default-features
reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" }
reverie-ptrace = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" }
test-allocator = { version = "0.0.0", path = "../../../common/test-allocator" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
tracing-subscriber = { version = "0.3.23", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
2 changes: 1 addition & 1 deletion hermit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
shell-words = "1.1.1"
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since hermit-cli/Cargo.lock is checked in, consider regenerating it as part of this Tokio bump so the lockfile reflects the new tokio requirement. Otherwise cargo build --locked (or any workflow that relies on the committed lockfile) can fail because the current lockfile pins tokio to an older version.

Copilot uses AI. Check for mistakes.
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
tracing-appender = "0.2.4"
tracing-subscriber = { version = "0.3.23", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
Expand Down
Loading