diff --git a/dom/webgpu/tests/cts/moz.yaml b/dom/webgpu/tests/cts/moz.yaml index cd8bb7d4ac80..31d476f94f2b 100644 --- a/dom/webgpu/tests/cts/moz.yaml +++ b/dom/webgpu/tests/cts/moz.yaml @@ -45,6 +45,7 @@ vendoring: command: cargo args: - run + - --no-default-features - -- - '../checkout/' diff --git a/dom/webgpu/tests/cts/vendor/Cargo.toml b/dom/webgpu/tests/cts/vendor/Cargo.toml index fb064ed8fdf7..ca3f5341eae3 100644 --- a/dom/webgpu/tests/cts/vendor/Cargo.toml +++ b/dom/webgpu/tests/cts/vendor/Cargo.toml @@ -3,13 +3,25 @@ name = "vendor-webgpu-cts" version = "0.1.0" edition = "2021" +[features] +default = ["human_friendly"] +human_friendly = [ + "clap/color", + "clap/help", + "clap/suggestions", + "clap/usage", + "env_logger/auto-color", + "env_logger/humantime", +] + [dependencies] -clap = { version = "4.1.6", features = ["derive"] } -dunce = "1.0.3" -env_logger = { version = "0.11.0", default-features = false, features = [ - "auto-color", - "humantime", +clap = { version = "4.1.6", default-features = false, features = [ + "derive", + "error-context", + "std", ] } +dunce = "1.0.3" +env_logger = { version = "0.11.0", default-features = false } ezcmd = "0.3.0" itertools = "0.11.0" joinery = "3.1.0"