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
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wrt-test-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ once_cell = { version = "1.8", default-features = false }
ctor = { version = "0.4", optional = true }
inventory = { version = "0.3", optional = true }
serde_json = { version = "1.0", optional = true }
clap = { version = "4.1", features = ["derive"], optional = true }
clap = { version = "4.5", features = ["derive"], optional = true }
colored = { version = "3.0", optional = true }

[dev-dependencies]
Expand Down
9 changes: 7 additions & 2 deletions wrtd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@ wrt-panic = { workspace = true, default-features = false }
wrt = { workspace = true, default-features = false, optional = true }
wrt-runtime = { workspace = true, default-features = false, optional = true }

# Global allocator for no_std mode
linked_list_allocator = { version = "0.10", optional = true }
# Standard library dependencies (std-runtime only)
clap = { version = "4.5.39", features = ["derive"], optional = true }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", features = ["json"], optional = true }
anyhow = { workspace = true, optional = true }
once_cell = { version = "1.18", optional = true }


# No external dependencies - use internal capabilities only

Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ xshell = "0.2.5"

# Additions for symbols task
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive", "env"] }
clap = { version = "4.5.39", features = ["derive", "env"] }
rustc-demangle = "0.1"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0"
Expand Down
Loading